aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2012-10-29 14:20:23 -0700
committerJosh Blum <josh@joshknows.com>2012-10-29 17:41:30 -0700
commitba37bfc29bedef639179166470a6d3cd1cb6ef96 (patch)
tree82ad60ffa2ca6dfb4e82b3a2617664ed9e3bb07f /host/tests
parent9f4858e07edf0a3349238037f17ec76211c6096d (diff)
downloaduhd-ba37bfc29bedef639179166470a6d3cd1cb6ef96.tar.gz
uhd-ba37bfc29bedef639179166470a6d3cd1cb6ef96.tar.bz2
uhd-ba37bfc29bedef639179166470a6d3cd1cb6ef96.zip
uhd: removed installation of unit test files
Diffstat (limited to 'host/tests')
-rw-r--r--host/tests/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/host/tests/CMakeLists.txt b/host/tests/CMakeLists.txt
index 67e99941b..d93b0cc2e 100644
--- a/host/tests/CMakeLists.txt
+++ b/host/tests/CMakeLists.txt
@@ -39,13 +39,12 @@ SET(test_sources
#turn each test cpp file into an executable with an int main() function
ADD_DEFINITIONS(-DBOOST_TEST_DYN_LINK -DBOOST_TEST_MAIN)
-#for each source: build an executable, register it as a test, and install
+#for each source: build an executable, register it as a test
FOREACH(test_source ${test_sources})
GET_FILENAME_COMPONENT(test_name ${test_source} NAME_WE)
ADD_EXECUTABLE(${test_name} ${test_source})
TARGET_LINK_LIBRARIES(${test_name} uhd)
ADD_TEST(${test_name} ${test_name})
- INSTALL(TARGETS ${test_name} RUNTIME DESTINATION ${PKG_LIB_DIR}/tests COMPONENT tests)
ENDFOREACH(test_source)
########################################################################