summary refs log tree commit diff
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-11-20 21:23:38 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-11-20 21:23:38 +0100
commit159493351313223ee88a7f34c8550c0b7af6b3e6 (patch)
tree334a99349e3dbdb709774eeb3e84920fdde9db8a
parentMerge pull request #1618 from Begasus/haiku (diff)
downloadnheko-159493351313223ee88a7f34c8550c0b7af6b3e6.tar.xz
Fix voip defaults being incorrect because OS constants are not defined
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt

index 01c49d7d..525a3592 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -48,6 +48,8 @@ macro(hunter_add_package_safe) message("pkg_conf_path: '$ENV{PKG_CONFIG_PATH}', pkg_conf_libdir: '$ENV{PKG_CONFIG_LIBDIR}'") endmacro() +project(nheko LANGUAGES CXX C) + option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED}) option(USE_BUNDLED_OLM "Use the bundled version of libolm." ${HUNTER_ENABLED}) option(USE_BUNDLED_GTEST "Use the bundled version of Google Test." ${HUNTER_ENABLED}) @@ -109,8 +111,6 @@ endif() # Include Qt basic functions include(QtCommon) -project(nheko LANGUAGES CXX C) - include(GNUInstallDirs) set(CPACK_PACKAGE_VERSION_MAJOR "0")