summaryrefslogtreecommitdiffstats
path: root/host/tests
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-04-07 12:01:10 -0500
committerJosh Blum <josh@joshknows.com>2011-04-07 12:01:10 -0500
commitf0a2601d456ba4b5a75a7f0c9d21d2ab517dacec (patch)
treec6b0aa9c7a29a0dd39545bd5832b3b39eabaf9fe /host/tests
parente2cd276da0b23f59ba028b2f57443c27f921fa00 (diff)
parent74fc8946688d53ccd5d067d3f86e26b990af1bd4 (diff)
downloaduhd-f0a2601d456ba4b5a75a7f0c9d21d2ab517dacec.tar.gz
uhd-f0a2601d456ba4b5a75a7f0c9d21d2ab517dacec.tar.bz2
uhd-f0a2601d456ba4b5a75a7f0c9d21d2ab517dacec.zip
Merge branch 'mingw_cygwin'
Diffstat (limited to 'host/tests')
-rw-r--r--host/tests/CMakeLists.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/host/tests/CMakeLists.txt b/host/tests/CMakeLists.txt
index 821b2eb9e..f08fe669b 100644
--- a/host/tests/CMakeLists.txt
+++ b/host/tests/CMakeLists.txt
@@ -50,5 +50,7 @@ ENDFOREACH(test_source)
########################################################################
# demo of a loadable module
########################################################################
-ADD_LIBRARY(module_test MODULE module_test.cpp)
-TARGET_LINK_LIBRARIES(module_test uhd)
+IF(MSVC OR APPLE OR LINUX)
+ ADD_LIBRARY(module_test MODULE module_test.cpp)
+ TARGET_LINK_LIBRARIES(module_test uhd)
+ENDIF()