[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 01/02: wxgui: fix bug where grc_gnuradio fi
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 01/02: wxgui: fix bug where grc_gnuradio files aren't added to NSIS installers |
Date: |
Fri, 7 Mar 2014 19:15:42 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit f3408f8491aab6390cc92f319c206826c1da33e6
Author: Nicholas Corgan <address@hidden>
Date: Thu Jan 2 07:14:06 2014 -0800
wxgui: fix bug where grc_gnuradio files aren't added to NSIS installers
---
gr-wxgui/grc/CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gr-wxgui/grc/CMakeLists.txt b/gr-wxgui/grc/CMakeLists.txt
index 51c5647..9ee6e23 100644
--- a/gr-wxgui/grc/CMakeLists.txt
+++ b/gr-wxgui/grc/CMakeLists.txt
@@ -19,7 +19,7 @@
########################################################################
file(GLOB xml_files "*.xml")
-install(FILES ${xml_files} DESTINATION ${GRC_BLOCKS_DIR} COMPONENT "wxgui")
+install(FILES ${xml_files} DESTINATION ${GRC_BLOCKS_DIR} COMPONENT
"wxgui_python")
########################################################################
#The wxgui module contains a top_block + wxgui frame.
@@ -32,5 +32,5 @@ GR_PYTHON_INSTALL(
panel.py
top_block_gui.py
DESTINATION ${GR_PYTHON_DIR}/grc_gnuradio/wxgui
- COMPONENT "wxgui"
+ COMPONENT "wxgui_python"
)