From 1cc26703c32c70e888ef94bc408dcb5da6b5f5a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 9 Apr 2017 20:19:10 +0200 Subject: Fix CMake build dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- dcop/tests/CMakeLists.txt | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/dcop/tests/CMakeLists.txt b/dcop/tests/CMakeLists.txt index b9152cc82..72f8243c6 100644 --- a/dcop/tests/CMakeLists.txt +++ b/dcop/tests/CMakeLists.txt @@ -25,13 +25,15 @@ link_directories( ##### checks #################################### tde_add_check_executable( dcop_test AUTOMOC - SOURCES test.cpp ${CMAKE_CURRENT_BINARY_DIR}/test.skel ${CMAKE_CURRENT_BINARY_DIR}/test.h + SOURCES test.cpp ${CMAKE_CURRENT_BINARY_DIR}/test.skel LINK tdecore-shared + DEPENDENCIES dcop_tests_generated ) tde_add_check_executable( driver AUTOMOC - SOURCES driver.cpp ${CMAKE_CURRENT_BINARY_DIR}/test.stub ${CMAKE_CURRENT_BINARY_DIR}/test.h + SOURCES driver.cpp ${CMAKE_CURRENT_BINARY_DIR}/test.stub LINK tdecore-shared + DEPENDENCIES dcop_tests_generated ) add_test( NAME "dcop/dcop-tests" @@ -40,8 +42,11 @@ add_test( NAME "dcop/dcop-tests" set_tests_properties( dcop/dcop-tests PROPERTIES TIMEOUT 30) + ##### test.h and files ########################## +add_custom_target( dcop_tests_generated DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/test.h ) + add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test.h ${CMAKE_CURRENT_BINARY_DIR}/shell.generated COMMAND perl "${CMAKE_CURRENT_SOURCE_DIR}/generate.pl" @@ -49,16 +54,3 @@ add_custom_command( DEPENDS testcases generate.pl WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) - -# a hack because *.skel and *.stub files have to be located the same place with the *.h -add_custom_command( - OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test.skel - COMMAND ${CMAKE_COMMAND} -E copy_file - ${CMAKE_CURRENT_SOURCE_DIR}/test.skel ${CMAKE_CURRENT_BINARY_DIR}/ -) - -add_custom_command( - OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/test.stub - COMMAND ${CMAKE_COMMAND} -E copy_file - ${CMAKE_CURRENT_SOURCE_DIR}/test.stub ${CMAKE_CURRENT_BINARY_DIR}/ -) -- cgit v1.2.3