[cfe-commits] [PATCH] Make solution folders optional in cmake
Manuel Klimek
klimek at google.com
Tue May 8 12:06:10 PDT 2012
Using cmake with VS 2010 Express is a pain, as it doesn't support
solution folders. This patch allows easily turning them off for
express users.
Thoughts?
/Manuel
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt (revision 156387)
+++ CMakeLists.txt (working copy)
@@ -15,7 +15,10 @@
set(PACKAGE_VERSION "${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}svn")
-set_property(GLOBAL PROPERTY USE_FOLDERS ON)
+option(LLVM_USE_FOLDERS "Enable solution folders in Visual Studio.
Disable for Express versions." ON)
+if ( LLVM_USE_FOLDERS )
+ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
+endif()
include(VersionFromVCS)
More information about the cfe-commits
mailing list