summaryrefslogtreecommitdiffstats
path: root/base/tps-client/src/authentication
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2016-07-21 02:26:24 +0200
committerEndi S. Dewata <edewata@redhat.com>2016-07-26 21:18:14 +0200
commit3f4c9e4e7946f3f330b71cfe36a00ae933de2575 (patch)
tree760d492df7b59ad1042e30676a292617f999b684 /base/tps-client/src/authentication
parenta307cf68e91327ddbef4b9d7e2bbd3991354831f (diff)
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
Diffstat (limited to 'base/tps-client/src/authentication')
-rw-r--r--base/tps-client/src/authentication/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/tps-client/src/authentication/CMakeLists.txt b/base/tps-client/src/authentication/CMakeLists.txt
index ba8ca07dc..b0ca83a7c 100644
--- a/base/tps-client/src/authentication/CMakeLists.txt
+++ b/base/tps-client/src/authentication/CMakeLists.txt
@@ -37,6 +37,7 @@ set(ldapauth_library_SRCS
include_directories(${LDAPAUTH_PRIVATE_INCLUDE_DIRS})
add_library(${LDAPAUTH_SHARED_LIBRARY} SHARED ${ldapauth_library_SRCS})
+add_dependencies(${LDAPAUTH_SHARED_LIBRARY} pki-tps-jar)
target_link_libraries(${LDAPAUTH_SHARED_LIBRARY} ${LDAPAUTH_LINK_LIBRARIES})
set_target_properties(${LDAPAUTH_SHARED_LIBRARY}