diff options
author | Josh Blum <josh@joshknows.com> | 2012-01-12 12:11:07 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-01-12 12:11:07 -0800 |
commit | 02eaed1b08be2160232d5fc12e3d5926f6c03a9f (patch) | |
tree | 14f7062f72eec6d0a22bc1aa7f8d17e780c68f72 /host/CMakeLists.txt | |
parent | 821ae3580a001e7b1b27cac9f2b278dc7310bea7 (diff) | |
download | uhd-02eaed1b08be2160232d5fc12e3d5926f6c03a9f.tar.gz uhd-02eaed1b08be2160232d5fc12e3d5926f6c03a9f.tar.bz2 uhd-02eaed1b08be2160232d5fc12e3d5926f6c03a9f.zip |
uhd: dont populate requires.private in pc file
Benefits to having it, it may be technically correct,
but isnt needed for the purposes of building.
Downsides: makes pkg-config spit errors when
private development packages not installed,
or pc file not present for other reasons
Diffstat (limited to 'host/CMakeLists.txt')
-rw-r--r-- | host/CMakeLists.txt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/host/CMakeLists.txt b/host/CMakeLists.txt index 11ea431f6..40d034de5 100644 --- a/host/CMakeLists.txt +++ b/host/CMakeLists.txt @@ -223,15 +223,6 @@ ADD_SUBDIRECTORY(usrp_e_utils) ######################################################################## # Create Pkg Config File ######################################################################## -#set other pkg-config configuration variables -IF(ENABLE_USB) - LIST(APPEND UHD_PC_REQUIRES "libusb-1.0") -ENDIF() - -IF(ENABLE_ORC) - LIST(APPEND UHD_PC_REQUIRES "orc-0.4") -ENDIF() - FOREACH(inc ${Boost_INCLUDE_DIRS}) LIST(APPEND UHD_PC_CFLAGS "-I${inc}") ENDFOREACH(inc) |