diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-03 16:40:55 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2013-04-03 16:40:55 -0700 |
commit | 807ef844b92b676c67c3133dd1530689d2b5e84d (patch) | |
tree | e3227add5a53abab7072911c9532bc264f4526c1 /gr-atsc | |
parent | 8b3ba8a298b07ebe4fa9088a615c159c81389baa (diff) |
cmake: fix packaging categories to use runtime vs. core
Diffstat (limited to 'gr-atsc')
-rw-r--r-- | gr-atsc/CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gr-atsc/CMakeLists.txt b/gr-atsc/CMakeLists.txt index a281cc8401..5e136cadae 100644 --- a/gr-atsc/CMakeLists.txt +++ b/gr-atsc/CMakeLists.txt @@ -56,21 +56,21 @@ CPACK_COMPONENT("atsc_runtime" GROUP "ATSC" DISPLAY_NAME "Runtime" DESCRIPTION "Runtime" - DEPENDS "core_runtime" + DEPENDS "runtime_runtime" ) CPACK_COMPONENT("atsc_devel" GROUP "ATSC" DISPLAY_NAME "Development" DESCRIPTION "C++ headers, package config, import libraries" - DEPENDS "core_devel" + DEPENDS "runtime_devel" ) CPACK_COMPONENT("atsc_python" GROUP "ATSC" DISPLAY_NAME "Python" DESCRIPTION "Python modules for runtime; GRC xml files" - DEPENDS "core_python;atsc_runtime" + DEPENDS "runtime_python;atsc_runtime" ) CPACK_COMPONENT("atsc_examples" @@ -84,7 +84,7 @@ CPACK_COMPONENT("atsc_swig" GROUP "ATSC" DISPLAY_NAME "SWIG" DESCRIPTION "SWIG development .i files" - DEPENDS "core_swig;atsc_python;atsc_devel" + DEPENDS "runtime_swig;atsc_python;atsc_devel" ) ######################################################################## |