summaryrefslogtreecommitdiff
path: root/gr-uhd/lib
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2015-10-16 12:21:55 -0400
committerTom Rondeau <tom@trondeau.com>2015-10-16 15:48:47 -0400
commit86fa885c2736eed501b1e13dcab786d5e88cadec (patch)
tree9ccba0f03db94a043d29f0dadfa721b152bfecdf /gr-uhd/lib
parent09b03871e81da2b09792a454ee3caf28bdad4c3c (diff)
uhd: open support for controlport in static builds.
This was a limitation of ICE that is no longer necessary with Thrift.
Diffstat (limited to 'gr-uhd/lib')
-rw-r--r--gr-uhd/lib/CMakeLists.txt10
1 files changed, 0 insertions, 10 deletions
diff --git a/gr-uhd/lib/CMakeLists.txt b/gr-uhd/lib/CMakeLists.txt
index 531bd40b09..b57b80b557 100644
--- a/gr-uhd/lib/CMakeLists.txt
+++ b/gr-uhd/lib/CMakeLists.txt
@@ -82,16 +82,6 @@ GR_LIBRARY_FOO(gnuradio-uhd RUNTIME_COMPONENT "uhd_runtime" DEVEL_COMPONENT "uhd
########################################################################
if(ENABLE_STATIC_LIBS)
if(UHD_VERSION VERSION_GREATER "3.8.1")
- if(ENABLE_GR_CTRLPORT)
- # Remove GR_CTRLPORT set this target's definitions.
- # Makes sure we don't try to use ControlPort stuff in source files
- GET_DIRECTORY_PROPERTY(STATIC_DEFS COMPILE_DEFINITIONS)
- list(REMOVE_ITEM STATIC_DEFS "GR_CTRLPORT")
- SET_PROPERTY(DIRECTORY PROPERTY COMPILE_DEFINITIONS "${STATIC_DEFS}")
-
- # readd it to the target since we removed it from the directory-wide list.
- SET_PROPERTY(TARGET gnuradio-uhd APPEND PROPERTY COMPILE_DEFINITIONS "GR_CTRLPORT")
- endif(ENABLE_GR_CTRLPORT)
add_library(gnuradio-uhd_static STATIC ${gr_uhd_sources})