summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2013-08-27 13:02:33 -0400
committerTom Rondeau <tom@trondeau.com>2013-08-27 13:02:33 -0400
commitf8a150552f0659f07f2066241ced769cb279bdc5 (patch)
tree5a0eea5d0088aff1fde3015b0285d27abddf89a3
parent552eb6b12f3ad6c80746aac4eb1e6d7abb620adb (diff)
build: installing all cmake files into lib/cmake/gnuradio directory.
-rw-r--r--CMakeLists.txt5
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"
)