forked from mirror/nheko
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.
19 lines
446 B
19 lines
446 B
ExternalProject_Add(
|
|
Json
|
|
|
|
GIT_REPOSITORY ${JSON_URL}
|
|
GIT_TAG ${JSON_TAG}
|
|
|
|
BUILD_IN_SOURCE 1
|
|
SOURCE_DIR ${DEPS_BUILD_DIR}/json
|
|
|
|
CONFIGURE_COMMAND ${CMAKE_COMMAND}
|
|
-DJSON_BuildTests=OFF
|
|
-DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_DIR}
|
|
-DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}
|
|
|
|
BUILD_COMMAND ${CMAKE_COMMAND} --build ${DEPS_BUILD_DIR}/json
|
|
INSTALL_COMMAND make install
|
|
)
|
|
|
|
list(APPEND THIRD_PARTY_DEPS Json)
|
|
|