aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorGuillaume Bâty <guillaume.baty@gmx.fr>2015-07-26 20:10:05 +0200
committerGuillaume Bâty <guillaume.baty@gmx.fr>2015-07-26 20:10:05 +0200
commit87d96dfc108499817896fd198ecb3b016f8b5feb (patch)
tree6feea1660cf298412e57f0da7b387e766db00d91 /tests
parent432c5d89977a345e57d25a1f3cdd7b4851bd7354 (diff)
Fix missing dependency to QtCore in tests.
QtCore is required because QDebug is now included by default in wrappers
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index ecea43c64..8eb993cf7 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -1,3 +1,6 @@
+find_package(Qt5 REQUIRED COMPONENTS Core)
+include_directories(${Qt5Core_INCLUDE_DIRS})
+
add_subdirectory(libminimal)
if(NOT DEFINED MINIMAL_TESTS)
add_subdirectory(libsample)