diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-03-31 14:55:11 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-03-31 08:49:12 -0700 |
commit | 6dbc9ca4b01a1e776f90a2f6337d19418ca0c365 (patch) | |
tree | 3c6c269035ba9ebe6034e059d4dc5eca50f149b2 /tests | |
parent | 286100c10af67df2747d136cee5d4cca192b4b5a (diff) | |
download | subsurface-6dbc9ca4b01a1e776f90a2f6337d19418ca0c365.tar.gz |
cleanup: don't compile subsurface-helper.cpp for tests
It is unclear why the subsurface-helper.cpp file was linked with the
tests. In any case, it led to comlicated ifdef-ery, so let's remove
that for now and readd later if the need arises.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c2e10dc63..77312a215 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -88,8 +88,7 @@ add_definitions(-g) add_definitions(-DSUBSURFACE_TEST_DATA="${SUBSURFACE_TEST_DATA}") # Build QML test runner -# add_executable demands relative path, therefore ../ -add_executable(TestQML testqml.cpp ../subsurface-helper.cpp ) +add_executable(TestQML testqml.cpp) target_link_libraries( TestQML subsurface_corelib |