aboutsummaryrefslogtreecommitdiff
path: root/tests/libtest/CMakeLists.txt
diff options
context:
space:
mode:
authorBenoit Neil <suky0001@free.fr>2009-04-08 23:48:07 +0000
committerBenoit Neil <suky0001@free.fr>2009-04-08 23:48:07 +0000
commite5f1480a384729e9423ed0f2591a5cf02e9b943f (patch)
tree7dcdf940b16830d291413e095808dd28d5aa8f0d /tests/libtest/CMakeLists.txt
parent020955ebc26ec978fe7ebac380519d877f0c3f79 (diff)
(Minor update) Added labal prefixes to tests targets
Diffstat (limited to 'tests/libtest/CMakeLists.txt')
-rw-r--r--tests/libtest/CMakeLists.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/libtest/CMakeLists.txt b/tests/libtest/CMakeLists.txt
index 7b9f383b0..4d55cfe05 100644
--- a/tests/libtest/CMakeLists.txt
+++ b/tests/libtest/CMakeLists.txt
@@ -1,3 +1,4 @@
+SET(TARGET_LABEL_PREFIX "Test ")
FUNCTION(SETUP_TEST TEST_NAME) # ARGN are the files in the test
ADD_EXECUTABLE( ${TEST_NAME} ${ARGN} )
@@ -13,6 +14,7 @@ FUNCTION(SETUP_TEST TEST_NAME) # ARGN are the files in the test
TARGET_LINK_LIBRARIES( ${TEST_NAME} libcurl )
SET_TARGET_PROPERTIES(${TEST_NAME} PROPERTIES COMPILE_DEFINITIONS ${UPPER_TEST_NAME})
+ SET_TARGET_PROPERTIES(${TEST_NAME} PROPERTIES PROJECT_LABEL "${TARGET_LABEL_PREFIX}${TEST_NAME}")
# Add the postfix to the executable since it is not added automatically as for modules and shared libraries
SET_TARGET_PROPERTIES(${TEST_NAME} PROPERTIES DEBUG_POSTFIX "${CMAKE_DEBUG_POSTFIX}")