diff options
author | Kargatum <dowlandtop@yandex.com> | 2021-05-23 18:53:15 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-23 13:53:15 +0200 |
commit | 50adcf206567dbf5d44b4424ab771f8f427bd4f2 (patch) | |
tree | 924b2e72a7f69b2e5d081e3f6530b07439677c88 /deps/CMakeLists.txt | |
parent | af28aeebde8f8d9dec96259a594af595e1308d33 (diff) |
feat(Deps/Boost): add boost support (#5676)
* feat(Deps/Boost): add boost support
* 1
* 2
* to 1.74
Diffstat (limited to 'deps/CMakeLists.txt')
-rw-r--r-- | deps/CMakeLists.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index 3c30d4661e..d4e599a4c1 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -17,23 +17,24 @@ if(CMAKE_SYSTEM_NAME MATCHES "Windows") endif() add_subdirectory(threads) -add_subdirectory(acelite) -add_subdirectory(fmt) if(SERVERS OR TOOLS) + add_subdirectory(acelite) + add_subdirectory(boost) add_subdirectory(zlib) add_subdirectory(g3dlite) add_subdirectory(recastnavigation) + add_subdirectory(fmt) add_subdirectory(SFMT) add_subdirectory(utf8cpp) add_subdirectory(openssl) add_subdirectory(argon2) + add_subdirectory(jemalloc) endif() if(SERVERS) add_subdirectory(mysql) add_subdirectory(readline) - add_subdirectory(jemalloc) add_subdirectory(gsoap) add_subdirectory(gperftools) endif() |