summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-03-05 12:13:11 -0500
committerTom Rondeau <trondeau@vt.edu>2013-03-05 12:13:35 -0500
commit982c5e88d226abc44da58371fd505a2d54380091 (patch)
treefcbe186e99ced2d671ccad4143bbe9d084819d30
parent9297c84dfdae3002677f759ef2b38a877d2edc2c (diff)
build: install our cmake modules into share/gnuradio/cmake/Modules.
-rw-r--r--CMakeLists.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b640c1faa0..64eccbbeb2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -294,6 +294,14 @@ install(
COMPONENT "core_devel"
)
+# Install our Cmake modules into ${GR_PKG_DATA_DIR}/cmake/Modules
+file(GLOB cmake_modules "cmake/Modules/*.cmake")
+install(
+ FILES ${cmake_modules}
+ DESTINATION ${GR_PKG_DATA_DIR}/cmake/Modules
+ COMPONENT "core_devel"
+)
+
#finalize cpack after subdirs processed
include(GrPackage)
CPACK_FINALIZE()