summary refs log tree commit diff
path: root/deps
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-09-11 14:56:09 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-09-11 14:56:09 +0300
commit074608dec15e10a61decdcc017cc1927b99b8dc3 (patch)
tree26344012b3b0874affd54bfe6b5a17aba38fe2fb /deps
parentFix the docker build (diff)
downloadnheko-074608dec15e10a61decdcc017cc1927b99b8dc3.tar.xz
Switch to libcmark
Diffstat (limited to 'deps')
-rw-r--r--deps/CMakeLists.txt11
-rw-r--r--deps/cmake/Maddy.cmake20
2 files changed, 0 insertions, 31 deletions
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt

index 31603755..5df60d27 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt
@@ -26,7 +26,6 @@ option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${USE_BUNDLED}) option(USE_BUNDLED_OLM "Use the bundled version of libolm." ${USE_BUNDLED}) option(USE_BUNDLED_TWEENY "Use the bundled version of Tweeny." ${USE_BUNDLED}) option(USE_BUNDLED_LMDBXX "Use the bundled version of lmdbxx." ${USE_BUNDLED}) -option(USE_BUNDLED_MADDY "Use the bundled version of maddy." ${USE_BUNDLED}) option(USE_BUNDLED_MATRIX_CLIENT "Use the bundled version of mtxclient." ${USE_BUNDLED}) @@ -65,12 +64,6 @@ set(SPDLOG_URL https://github.com/gabime/spdlog/archive/v1.1.0.tar.gz) set(SPDLOG_HASH 3dbcbfd8c07e25f5e0d662b194d3a7772ef214358c49ada23c044c4747ce8b19) -set( - MADDY_URL - https://github.com/mujx/maddy/archive/d6b32013a580d40de57ac8b6650846abecbb071f.tar.gz - ) -set(MADDY_HASH c40df975420aa9f1549d9e528af84243f701b5264ed9c32d86b1cfc9306c15b8) - set(JSON_HEADER_URL https://github.com/nlohmann/json/releases/download/v3.2.0/json.hpp) set(JSON_HEADER_HASH @@ -87,10 +80,6 @@ if(USE_BUNDLED_SPDLOG) include(SpdLog) endif() -if(USE_BUNDLED_MADDY) - include(Maddy) -endif() - if(USE_BUNDLED_OLM) include(Olm) endif() diff --git a/deps/cmake/Maddy.cmake b/deps/cmake/Maddy.cmake deleted file mode 100644
index 699d214d..00000000 --- a/deps/cmake/Maddy.cmake +++ /dev/null
@@ -1,20 +0,0 @@ -set(WINDOWS_FLAGS "") - -if(MSVC) - set(WINDOWS_FLAGS "-DCMAKE_GENERATOR_PLATFORM=x64") -endif() - -ExternalProject_Add( - Maddy - - URL ${MADDY_URL} - URL_HASH SHA256=${MADDY_HASH} - - BUILD_IN_SOURCE 1 - SOURCE_DIR ${DEPS_BUILD_DIR}/maddy - CONFIGURE_COMMAND ${CMAKE_COMMAND} - -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_DIR} - ${DEPS_BUILD_DIR}/maddy - ${WINDOWS_FLAGS}) - -list(APPEND THIRD_PARTY_DEPS Maddy)