summary refs log tree commit diff
path: root/cmake/MatrixStructs.cmake
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-06-17 19:18:12 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-06-17 19:18:12 +0300
commit8704265978572e60f8b04d89cec2f404f5ea4113 (patch)
treef1e272705c26ce2b0121d6fffccd60f98246b84d /cmake/MatrixStructs.cmake
parentAdd Visual Studio 2017 support (#336) (diff)
parentUpdate build instructions (diff)
downloadnheko-8704265978572e60f8b04d89cec2f404f5ea4113.tar.xz
Merge branch 'e2ee'
- Support for e2ee rooms
- Implement categories & file logging
- Let the user know when the app can't reach the server (#93)

fixes #13
fixes #326
Diffstat (limited to 'cmake/MatrixStructs.cmake')
-rw-r--r--cmake/MatrixStructs.cmake33
1 files changed, 0 insertions, 33 deletions
diff --git a/cmake/MatrixStructs.cmake b/cmake/MatrixStructs.cmake
deleted file mode 100644

index af694c0f..00000000 --- a/cmake/MatrixStructs.cmake +++ /dev/null
@@ -1,33 +0,0 @@ -include(ExternalProject) - -# -# Build matrix-structs. -# - -set(THIRD_PARTY_ROOT ${CMAKE_SOURCE_DIR}/.third-party) -set(MATRIX_STRUCTS_ROOT ${THIRD_PARTY_ROOT}/matrix_structs) -set(MATRIX_STRUCTS_INCLUDE_DIR ${MATRIX_STRUCTS_ROOT}/include) -set(MATRIX_STRUCTS_LIBRARY matrix_structs) - -link_directories(${MATRIX_STRUCTS_ROOT}) - -set(WINDOWS_FLAGS "") - -if(MSVC) - set(WINDOWS_FLAGS "-DCMAKE_GENERATOR_PLATFORM=x64") -endif() - -ExternalProject_Add( - MatrixStructs - - GIT_REPOSITORY https://github.com/mujx/matrix-structs - GIT_TAG 5e57c2385a79b6629d1998fec4a7c0baee23555e - - BUILD_IN_SOURCE 1 - SOURCE_DIR ${MATRIX_STRUCTS_ROOT} - CONFIGURE_COMMAND ${CMAKE_COMMAND} - -DCMAKE_BUILD_TYPE=Release ${MATRIX_STRUCTS_ROOT} - ${WINDOWS_FLAGS} - BUILD_COMMAND ${CMAKE_COMMAND} --build ${MATRIX_STRUCTS_ROOT} --config Release - INSTALL_COMMAND "" -)