mirror of
https://git.tesses.org/tesses50/crosslang.git
synced 2026-06-01 18:25:32 +00:00
14 lines
420 B
CMake
14 lines
420 B
CMake
if(CROSSLANG_FETCHCONTENT)
|
|
|
|
|
|
set(CROSSLANG_STATIC ${TESSESFRAMEWORK_STATIC} CACHE INTERNAL "For CrossLang" FORCE)
|
|
FetchContent_Declare(
|
|
TessesFramework
|
|
GIT_REPOSITORY https://git.tesses.org/tesses50/tessesframework.git
|
|
GIT_TAG 25d67053ccebf209f50e6928fad8827164eb4c28
|
|
)
|
|
set(TESSESFRAMEWORK_ENABLE_EXAMPLES OFF)
|
|
FetchContent_MakeAvailable(TessesFramework)
|
|
else()
|
|
find_package(TessesFramework REQUIRED)
|
|
endif() |