Skip to content

Commit edd83a5

Browse files
author
Alexandre jublot
committed
feat: added Find script
1 parent 1d04822 commit edd83a5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

FindRenderCore.cmake

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
if(NOT TARGET render-core)
2+
include(FetchContent)
3+
4+
FetchContent_Declare(
5+
render-core
6+
GIT_REPOSITORY https://github.com/PolymorphEngine/render-core.git
7+
GIT_TAG main
8+
)
9+
10+
FetchContent_MakeAvailable(render-core)
11+
get_target_property(render-core-icls render-core INTERFACE_INCLUDE_DIRECTORIES)
12+
endif()

0 commit comments

Comments
 (0)