diff options
author | David Cole <david.cole@kitware.com> | 2012-12-03 18:53:43 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2012-12-03 18:53:43 (GMT) |
commit | 7fa0f4b8703e08e958336b66f1b4f7db94ef4001 (patch) | |
tree | a891199cb29e69bb9338e0b7e28ff0261d406791 /Source/cmGlobalVisualStudio11Generator.h | |
parent | 538af1642561565f6d2674430005bb5dd6370ebb (diff) | |
download | CMake-7fa0f4b8703e08e958336b66f1b4f7db94ef4001.zip CMake-7fa0f4b8703e08e958336b66f1b4f7db94ef4001.tar.gz CMake-7fa0f4b8703e08e958336b66f1b4f7db94ef4001.tar.bz2 |
VS11: Allow using folders with the VS11 Express Edition (#13770)
Solution folders are supported as read-only in the VS11 Express
Edition, so do not prohibit their use just because we detect the
express edition (as we did in the VS10 generator).
Inspired-by: Paris
Diffstat (limited to 'Source/cmGlobalVisualStudio11Generator.h')
-rw-r--r-- | Source/cmGlobalVisualStudio11Generator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmGlobalVisualStudio11Generator.h b/Source/cmGlobalVisualStudio11Generator.h index 8898c5d..174f1cc 100644 --- a/Source/cmGlobalVisualStudio11Generator.h +++ b/Source/cmGlobalVisualStudio11Generator.h @@ -33,6 +33,7 @@ public: virtual std::string GetUserMacrosDirectory() { return ""; } protected: virtual const char* GetIDEVersion() { return "11.0"; } + bool UseFolderProperty(); private: class Factory; }; |