diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-05 12:13:11 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-05 12:13:35 -0500 |
commit | 982c5e88d226abc44da58371fd505a2d54380091 (patch) | |
tree | fcbe186e99ced2d671ccad4143bbe9d084819d30 | |
parent | 9297c84dfdae3002677f759ef2b38a877d2edc2c (diff) |
build: install our cmake modules into share/gnuradio/cmake/Modules.
-rw-r--r-- | CMakeLists.txt | 8 |
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() |