You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
539 B
16 lines
539 B
include (FetchContent)
|
|
FetchContent_Declare(utillib
|
|
GIT_REPOSITORY https://github.com/ihedvall/utillib.git
|
|
GIT_TAG HEAD)
|
|
set(UTIL_DOC OFF)
|
|
set(UTIL_TEST OFF)
|
|
set(UTIL_TOOLS OFF)
|
|
set(UTIL_LEX OFF)
|
|
#set(BUILD_SHARED_LIBS OFF)
|
|
|
|
FetchContent_MakeAvailable(utillib)
|
|
|
|
message(STATUS "UTILLIB Populated: " ${utillib_POPULATED})
|
|
message(STATUS "UTILLIB Source Dir: " ${utillib_SOURCE_DIR})
|
|
message(STATUS "UTILLIB Binary Dir: " ${utillib_BINARY_DIR})
|
|
message(STATUS "UTILLIB Updates: " ${FETCHCONTENT_UPDATES_DISCONNECTED_UTILLIB})
|