aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Schmitz <johannes.schmitz1@gmail.com>2019-04-26 22:01:29 +0200
committerMarcus Müller <marcus@hostalia.de>2019-05-12 01:31:22 +0200
commitd66bc948823e32e8651667748702415c570af119 (patch)
tree9a4f6c2f8b6c1ab2899643689154020c19c48c33
parentcmake: Enable CMAKE_EXPORT_COMPILE_COMMANDS (diff)
downloadgnuradio-d66bc948823e32e8651667748702415c570af119.tar.xz
gnuradio-d66bc948823e32e8651667748702415c570af119.zip
modtool: Improve style of some comments in template
-rw-r--r--gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt b/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt
index 0f603b48b..3b3073275 100644
--- a/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt
+++ b/gr-utils/python/modtool/templates/gr-newmod/CMakeLists.txt
@@ -25,20 +25,20 @@ cmake_minimum_required(VERSION 3.8)
project(gr-howto CXX C)
enable_testing()
-#install to PyBOMBS target prefix if defined
+# Install to PyBOMBS target prefix if defined
if(DEFINED ENV{PYBOMBS_PREFIX})
set(CMAKE_INSTALL_PREFIX $ENV{PYBOMBS_PREFIX})
message(STATUS "PyBOMBS installed GNU Radio. Setting CMAKE_INSTALL_PREFIX to $ENV{PYBOMBS_PREFIX}")
endif()
-#select the release build type by default to get optimization flags
+# Select the release build type by default to get optimization flags
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
message(STATUS "Build type not specified: defaulting to release.")
endif(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE ${CMAKE_BUILD_TYPE} CACHE STRING "")
-#make sure our local CMake Modules path comes first
+# Make sure our local CMake Modules path comes first
list(INSERT CMAKE_MODULE_PATH 0 ${CMAKE_SOURCE_DIR}/cmake/Modules)
# Set the version information here