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.
31 lines
781 B
31 lines
781 B
7 years ago
|
set(PLATFORM_FLAGS "")
|
||
|
|
||
|
if(MSVC)
|
||
|
set(PLATFORM_FLAGS "-DCMAKE_GENERATOR_PLATFORM=x64")
|
||
|
endif()
|
||
|
|
||
|
if(APPLE)
|
||
|
set(PLATFORM_FLAGS "-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl")
|
||
|
endif()
|
||
|
|
||
|
ExternalProject_Add(
|
||
|
MatrixClient
|
||
|
|
||
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/mtxclient
|
||
|
GIT_REPOSITORY ${MTXCLIENT_URL}
|
||
|
GIT_TAG ${MTXCLIENT_TAG}
|
||
|
|
||
|
BUILD_IN_SOURCE 1
|
||
|
SOURCE_DIR ${DEPS_BUILD_DIR}/mtxclient
|
||
|
CONFIGURE_COMMAND ${CMAKE_COMMAND}
|
||
|
-DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_DIR}
|
||
|
-DCMAKE_BUILD_TYPE=Release
|
||
|
-DBUILD_LIB_TESTS=OFF
|
||
|
-DBUILD_LIB_EXAMPLES=OFF
|
||
|
${PLATFORM_FLAGS}
|
||
|
${DEPS_BUILD_DIR}/mtxclient
|
||
|
BUILD_COMMAND
|
||
|
${CMAKE_COMMAND} --build ${DEPS_BUILD_DIR}/mtxclient --config Release)
|
||
|
|
||
|
list(APPEND THIRD_PARTY_DEPS MatrixClient)
|