aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2022-12-29 19:53:26 +0100
committerLinus Jahn <lnj@kaidan.im>2022-12-29 20:48:08 +0100
commit608fe34edb4b4d70a2ba6eca6a925f58fee52074 (patch)
tree895e8289780b88ec37799b092f2b0ee9f9214229 /tests
parent6fcc1444b23e974a5a6731ef3081f5dfc4d581e9 (diff)
downloadqxmpp-608fe34edb4b4d70a2ba6eca6a925f58fee52074.tar.gz
cmake: Use generate_export_header() instead of doing manually
This is going to make it easier for us to maintain things. It's also consistent with the new QXmppOmemo module. This requires CMake 3.7 now. Closes #523.
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 3e55e4d9..373ad23f 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -19,7 +19,7 @@ include_directories(${PROJECT_SOURCE_DIR}/src/base)
include_directories(${PROJECT_SOURCE_DIR}/src/client)
include_directories(${PROJECT_SOURCE_DIR}/src/omemo)
include_directories(${PROJECT_SOURCE_DIR}/src/server)
-include_directories(${PROJECT_BINARY_DIR}/src/base)
+include_directories(${PROJECT_BINARY_DIR}/src)
include_directories(${PROJECT_BINARY_DIR}/src/omemo)
include_directories(${CMAKE_CURRENT_BINARY_DIR})