diff options
Diffstat (limited to 'gr-wxgui')
-rw-r--r-- | gr-wxgui/CMakeLists.txt | 20 | ||||
-rw-r--r-- | gr-wxgui/grc/CMakeLists.txt | 6 | ||||
-rw-r--r-- | gr-wxgui/src/python/CMakeLists.txt | 2 |
3 files changed, 14 insertions, 14 deletions
diff --git a/gr-wxgui/CMakeLists.txt b/gr-wxgui/CMakeLists.txt index 7002ce91b..5bb9c3824 100644 --- a/gr-wxgui/CMakeLists.txt +++ b/gr-wxgui/CMakeLists.txt @@ -20,7 +20,7 @@ ######################################################################## # Setup dependencies ######################################################################## -INCLUDE(GrPython) +include(GrPython) GR_PYTHON_CHECK_MODULE("wx >= 2.8" wx "wx.version().split()[0] >= '2.8'" WX_FOUND) GR_PYTHON_CHECK_MODULE("numpy" numpy True NUMPY_FOUND) @@ -28,7 +28,7 @@ GR_PYTHON_CHECK_MODULE("numpy" numpy True ######################################################################## # Register component ######################################################################## -INCLUDE(GrComponent) +include(GrComponent) GR_REGISTER_COMPONENT("gr-wxgui" ENABLE_WXGUI ENABLE_GR_CORE_ ENABLE_PYTHON_ @@ -39,12 +39,12 @@ GR_REGISTER_COMPONENT("gr-wxgui" ENABLE_WXGUI ######################################################################## # Begin conditional configuration ######################################################################## -IF(ENABLE_WXGUI) +if(ENABLE_WXGUI) ######################################################################## # Setup CPack components ######################################################################## -INCLUDE(GrPackage) +include(GrPackage) CPACK_COMPONENT("wxgui" DISPLAY_NAME "WxGUI" DESCRIPTION "Wx GUI plotter widgets and grc wrappers" @@ -54,12 +54,12 @@ CPACK_COMPONENT("wxgui" ######################################################################## # Create Pkg Config File ######################################################################## -CONFIGURE_FILE( +configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/gr-wxgui.pc.in ${CMAKE_CURRENT_BINARY_DIR}/gr-wxgui.pc @ONLY) -INSTALL( +install( FILES ${CMAKE_CURRENT_BINARY_DIR}/gr-wxgui.pc DESTINATION ${GR_LIBRARY_DIR}/pkgconfig COMPONENT "wxgui" @@ -68,7 +68,7 @@ INSTALL( ######################################################################## # Install the conf file ######################################################################## -INSTALL( +install( FILES ${CMAKE_CURRENT_SOURCE_DIR}/gr-wxgui.conf DESTINATION ${GR_PKG_CONF_DIR} COMPONENT "wxgui" @@ -77,7 +77,7 @@ INSTALL( ######################################################################## # Add subdirectories ######################################################################## -ADD_SUBDIRECTORY(grc) -ADD_SUBDIRECTORY(src/python) +add_subdirectory(grc) +add_subdirectory(src/python) -ENDIF(ENABLE_WXGUI) +endif(ENABLE_WXGUI) diff --git a/gr-wxgui/grc/CMakeLists.txt b/gr-wxgui/grc/CMakeLists.txt index c39b5cfbe..49e3da3b1 100644 --- a/gr-wxgui/grc/CMakeLists.txt +++ b/gr-wxgui/grc/CMakeLists.txt @@ -18,13 +18,13 @@ # Boston, MA 02110-1301, USA. ######################################################################## -FILE(GLOB xml_files "*.xml") -INSTALL(FILES ${xml_files} DESTINATION ${GRC_BLOCKS_DIR} COMPONENT "wxgui") +file(GLOB xml_files "*.xml") +install(FILES ${xml_files} DESTINATION ${GRC_BLOCKS_DIR} COMPONENT "wxgui") ######################################################################## #The wxgui module contains a top_block + wxgui frame. ######################################################################## -INCLUDE(GrPython) +include(GrPython) GR_PYTHON_INSTALL( FILES diff --git a/gr-wxgui/src/python/CMakeLists.txt b/gr-wxgui/src/python/CMakeLists.txt index da86d4a81..24e06acd5 100644 --- a/gr-wxgui/src/python/CMakeLists.txt +++ b/gr-wxgui/src/python/CMakeLists.txt @@ -18,7 +18,7 @@ # Boston, MA 02110-1301, USA. ######################################################################## -INCLUDE(GrPython) +include(GrPython) ######################################################################## # Install python files into wxgui module |