summary refs log tree commit diff
path: root/cmake
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-04 01:38:54 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2018-07-04 01:38:54 +0300
commit3bc8d791fb6537257ccaae883845485f4c8a1c84 (patch)
tree1f529faa7183036bc1607dce6b8bc974d00421a0 /cmake
parentFix regressions regarding UI resizing (diff)
downloadnheko-3bc8d791fb6537257ccaae883845485f4c8a1c84.tar.xz
Don't download dependencies during build
fixes #346
Diffstat (limited to 'cmake')
-rw-r--r--cmake/LMDBXX.cmake23
-rw-r--r--cmake/Tweeny.cmake23
2 files changed, 0 insertions, 46 deletions
diff --git a/cmake/LMDBXX.cmake b/cmake/LMDBXX.cmake
deleted file mode 100644

index 3b9817d9..00000000 --- a/cmake/LMDBXX.cmake +++ /dev/null
@@ -1,23 +0,0 @@ -include(ExternalProject) - -# -# Build lmdbxx. -# - -set(THIRD_PARTY_ROOT ${CMAKE_SOURCE_DIR}/.third-party) -set(LMDBXX_ROOT ${THIRD_PARTY_ROOT}/lmdbxx) - -set(LMDBXX_INCLUDE_DIR ${LMDBXX_ROOT}) - -ExternalProject_Add( - lmdbxx - - GIT_REPOSITORY https://github.com/bendiken/lmdbxx - GIT_TAG 0b43ca87d8cfabba392dfe884eb1edb83874de02 - - BUILD_IN_SOURCE 1 - SOURCE_DIR ${LMDBXX_ROOT} - CONFIGURE_COMMAND "" - BUILD_COMMAND "" - INSTALL_COMMAND "" -) diff --git a/cmake/Tweeny.cmake b/cmake/Tweeny.cmake deleted file mode 100644
index 537ac92c..00000000 --- a/cmake/Tweeny.cmake +++ /dev/null
@@ -1,23 +0,0 @@ -include(ExternalProject) - -# -# Build tweeny -# - -set(THIRD_PARTY_ROOT ${CMAKE_SOURCE_DIR}/.third-party) -set(TWEENY_ROOT ${THIRD_PARTY_ROOT}/tweeny) - -set(TWEENY_INCLUDE_DIR ${TWEENY_ROOT}/include) - -ExternalProject_Add( - Tweeny - - GIT_REPOSITORY https://github.com/mobius3/tweeny - GIT_TAG b94ce07cfb02a0eb8ac8aaf66137dabdaea857cf - - BUILD_IN_SOURCE 1 - SOURCE_DIR ${TWEENY_ROOT} - CONFIGURE_COMMAND "" - BUILD_COMMAND "" - INSTALL_COMMAND "" -)