[Kst] branches/work/kst/portto4/kst
Peter Kümmel
syntheticpp at gmx.net
Thu Jan 20 16:05:42 CET 2011
SVN commit 1215961 by kuemmel:
update INSTALL
M +1 -0 INSTALL
M +2 -3 cmake/CMakeLists.txt
--- branches/work/kst/portto4/kst/INSTALL #1215960:1215961
@@ -112,6 +112,7 @@
-- kst_dataobjects = ON : Build dataobject plugins
-- kst_test = OFF : Build unit tests
-- kst_pch = OFF : Use precompiled headers
+ -- kst_edit_cont = OFF : Enable "Edit and Continue" for Visual Studio
To enable a option pass the value ON or 1, eg
--- branches/work/kst/portto4/kst/cmake/CMakeLists.txt #1215960:1215961
@@ -33,7 +33,7 @@
kst_option(dataobjects "Build dataobject plugins" ON all)
kst_option(test "Build unit tests" OFF all)
kst_option(pch "Use precompiled headers" ON all)
-kst_option(edit_cont "Enable <Edit and Continue> for Visual Studio" OFF win)
+kst_option(edit_cont "Enable \"Edit and Continue\" for Visual Studio" OFF win)
message(STATUS)
@@ -125,14 +125,13 @@
add_definitions(-D_USE_MATH_DEFINES)
endif()
-if(MSVC_IDE AND (kst_edit_cont OR kst_merge_files))
+if(MSVC_IDE AND kst_edit_cont)
# Enable <Edit and Continue> in Visual Studio
set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /ZI")
if(kst_pch)
# Studio bug: <Visual Studio 2005 "Force Includes" Breaks Edit and Continue with Pre-compiled Headers>
set(kst_pch 0 CACHE BOOL "Disable pch because of Edit&Continue" FORCE)
endif()
- message(STATUS "# Studio bug: Visual Studio 2005 Force Includes Breaks Edit and Continue with Pre-compiled Headers")
endif()
More information about the Kst
mailing list