mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
Make it possible to switch off solution folders. VS Express does not support
them, and requires the user to click away one error message per folder on project load. llvm-svn: 156472
This commit is contained in:
parent
fe00fb1f06
commit
17b4f6de93
@ -15,7 +15,10 @@ set(LLVM_VERSION_MINOR 2)
|
||||
|
||||
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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user