summaryrefslogtreecommitdiffstats
path: root/deps/cmake/MatrixClient.cmake
blob: 44992c0bc0c351972979f56971d5e33ea9f918d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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()

# Force to build with the bundled version of Boost. This is necessary because
# if an outdated version of Boost is installed, then CMake will grab that
# instead of the bundled version of Boost, like we wanted.
set(BOOST_BUNDLE_ROOT "-DBOOST_ROOT=${DEPS_BUILD_DIR}/boost")

set (MTX_SHARED ON)

if (MTX_STATIC)
    set (MTX_SHARED OFF)
endif()

ExternalProject_Add(
  MatrixClient

  URL ${MTXCLIENT_URL}
  URL_HASH SHA256=${MTXCLIENT_HASH}

  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
        -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TOOLCHAIN_FILE}
        ${BOOST_BUNDLE_ROOT}
        -DBUILD_SHARED_LIBS=${MTX_SHARED}
        ${PLATFORM_FLAGS}
        ${DEPS_BUILD_DIR}/mtxclient
  BUILD_COMMAND 
        ${CMAKE_COMMAND} --build ${DEPS_BUILD_DIR}/mtxclient --config Release)

list(APPEND THIRD_PARTY_DEPS MatrixClient)