[Kst] branches/work/kst/portto4/kst/cmake

Peter Kümmel syntheticpp at gmx.net
Fri Jan 7 13:37:19 CET 2011


SVN commit 1212557 by kuemmel:

cmake: add option kst_verbose

 M  +7 -0      CMakeLists.txt  


--- branches/work/kst/portto4/kst/cmake/CMakeLists.txt #1212556:1212557
@@ -11,6 +11,7 @@
 kst_option(release "Build release version" OFF all)
 kst_option(merge_files "Merge files to speedup build" OFF all)
 kst_option(merge_rebuild "Rebuild generated files from merged files build" OFF all)
+kst_option(verbose "Make verbose makefiles" OFF all)
 message(STATUS "")
 
 
@@ -20,6 +21,12 @@
 	set(CMAKE_BUILD_TYPE Debug)
 endif()
 
+if(kst_verbose)
+	set(CMAKE_VERBOSE_MAKEFILE 1)
+else()
+	set(CMAKE_VERBOSE_MAKEFILE 0)
+endif()
+
 find_package(Qt4 REQUIRED)
 include(${QT_USE_FILE})
 


More information about the Kst mailing list