diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-08-27 13:02:33 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-08-27 13:02:33 -0400 |
commit | f8a150552f0659f07f2066241ced769cb279bdc5 (patch) | |
tree | 5a0eea5d0088aff1fde3015b0285d27abddf89a3 | |
parent | 552eb6b12f3ad6c80746aac4eb1e6d7abb620adb (diff) |
build: installing all cmake files into lib/cmake/gnuradio directory.
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c9690d69a9..625d83def4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -315,8 +315,11 @@ if(NOT CMAKE_MODULES_DIR) set(CMAKE_MODULES_DIR lib/cmake/gnuradio) endif(NOT CMAKE_MODULES_DIR) +# Install all other cmake files into same directory +file(GLOB cmake_others "cmake/Modules/*.cmake") + install( - FILES ${cmake_configs} + FILES ${cmake_configs} ${cmake_others} DESTINATION ${CMAKE_MODULES_DIR} COMPONENT "runtime_devel" ) |