diff options
author | Julian Andres Klode <jak@debian.org> | 2016-08-06 21:32:36 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2016-08-06 22:36:02 +0200 |
commit | dfd863ea50c0fcf9b9ac4dfb5ae0e64c529bd767 (patch) | |
tree | 34cc50dd6d8c0b78f28b36212496ccc8a5fed33c /test/interactive-helper/CMakeLists.txt | |
parent | 9a2aa0e7f21ef33345f6093ca17fab97a678d543 (diff) |
CMake: Switch integration tests and travis over
This early support seems a bit hacky, but it's a hard switch: The
integration tests do not understand the old build system anymore
afterwards. I don't really like that.
Diffstat (limited to 'test/interactive-helper/CMakeLists.txt')
-rw-r--r-- | test/interactive-helper/CMakeLists.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/interactive-helper/CMakeLists.txt b/test/interactive-helper/CMakeLists.txt new file mode 100644 index 000000000..fc08d6a8f --- /dev/null +++ b/test/interactive-helper/CMakeLists.txt @@ -0,0 +1,10 @@ +add_executable(mthdcat mthdcat.cc) +target_link_libraries(mthdcat apt-pkg) +add_executable(testdeb testdeb.cc) +target_link_libraries(testdeb apt-pkg apt-inst) +add_executable(extract-control extract-control.cc) +target_link_libraries(extract-control apt-pkg apt-inst) +add_executable(aptwebserver aptwebserver.cc) +target_link_libraries(aptwebserver apt-pkg ${CMAKE_THREAD_LIBS_INIT}) +add_executable(test_fileutl test_fileutl.cc) +target_link_libraries(test_fileutl apt-pkg) |