diff options
author | Martin Braun <martin.braun@ettus.com> | 2019-05-21 11:33:10 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2019-05-22 15:34:52 -0700 |
commit | 7a062a181ae1a0270408fff594d18a4c2dc3c009 (patch) | |
tree | d6c02c8dfe07aa32a4791e7d001a6caeeda96c8c /host/cmake/Modules/UHDComponent.cmake | |
parent | 8081105e24506bea347fceb417dae606808316c4 (diff) | |
download | uhd-7a062a181ae1a0270408fff594d18a4c2dc3c009.tar.gz uhd-7a062a181ae1a0270408fff594d18a4c2dc3c009.tar.bz2 uhd-7a062a181ae1a0270408fff594d18a4c2dc3c009.zip |
cmake: Remove superfluous modules
CMakeParseArgumentsCopy, CMakeCheckCXXSymbolExists, and
CMakeCheckSymbolExists were backported from when we required CMake 2.8.
No longer required since we require CMake 3.5.1.
Diffstat (limited to 'host/cmake/Modules/UHDComponent.cmake')
-rw-r--r-- | host/cmake/Modules/UHDComponent.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/cmake/Modules/UHDComponent.cmake b/host/cmake/Modules/UHDComponent.cmake index db8806be9..c85cc0fa1 100644 --- a/host/cmake/Modules/UHDComponent.cmake +++ b/host/cmake/Modules/UHDComponent.cmake @@ -78,7 +78,7 @@ endmacro(LIBUHD_REGISTER_COMPONENT) # Install only if appropriate for package and if component is enabled ######################################################################## function(UHD_INSTALL) - include(CMakeParseArgumentsCopy) + include(CMakeParseArguments) cmake_parse_arguments(UHD_INSTALL "" "DESTINATION;COMPONENT" "TARGETS;FILES;PROGRAMS" ${ARGN}) if(UHD_INSTALL_FILES) |