From 3f4c9e4e7946f3f330b71cfe36a00ae933de2575 Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Thu, 21 Jul 2016 02:26:24 +0200 Subject: Added CMake target dependencies. To help troubleshooting build issues, some CMake dependencies have been added to some targets even though the actual codes do not require those dependencies. This will ensure the targets are built sequentially so build failures can be found more easily at the end of the build log. https://fedorahosted.org/pki/ticket/2403 --- base/native-tools/src/tkstool/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'base/native-tools') diff --git a/base/native-tools/src/tkstool/CMakeLists.txt b/base/native-tools/src/tkstool/CMakeLists.txt index 8b07950eb..8c6571788 100644 --- a/base/native-tools/src/tkstool/CMakeLists.txt +++ b/base/native-tools/src/tkstool/CMakeLists.txt @@ -34,7 +34,7 @@ set(tkstool_SRCS include_directories(${TKSTOOL_PRIVATE_INCLUDE_DIRS}) add_executable(tkstool ${tkstool_SRCS}) - +add_dependencies(tkstool pki-certsrv-jar) target_link_libraries(tkstool ${TKSTOOL_LINK_LIBRARIES}) install( -- cgit