diff options
author | Stephen Kelly <steveire@gmail.com> | 2012-03-05 14:36:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2012-03-05 14:50:55 (GMT) |
commit | 761c146a4c02c76adafb233606dfe50157857c87 (patch) | |
tree | 7cc1937db8c69d2f3c71ba483ca3655d8af5cb6c /Source/cmDocumentVariables.cxx | |
parent | 76bff6029222449e0194b9348ac146ab8adfe4e9 (diff) | |
download | CMake-761c146a4c02c76adafb233606dfe50157857c87.zip CMake-761c146a4c02c76adafb233606dfe50157857c87.tar.gz CMake-761c146a4c02c76adafb233606dfe50157857c87.tar.bz2 |
Add default initializers for WIN32_EXECUTABLE and MACOSX_BUNDLE
This allows downstreams to use
set(CMAKE_WIN32_EXECUTABLE ON)
set(CMAKE_MACOSX_BUNDLE ON)
to create executables with the WIN32_EXECUTABLE and MACOSX_BUNDLE
properties set on by default.
Diffstat (limited to 'Source/cmDocumentVariables.cxx')
-rw-r--r-- | Source/cmDocumentVariables.cxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/cmDocumentVariables.cxx b/Source/cmDocumentVariables.cxx index a31dd01..80f6b87 100644 --- a/Source/cmDocumentVariables.cxx +++ b/Source/cmDocumentVariables.cxx @@ -1278,6 +1278,22 @@ void cmDocumentVariables::DefineVariables(cmake* cm) "See that target property for additional information.", false, "Variables that Control the Build"); + cm->DefineProperty + ("CMAKE_WIN32_EXECUTABLE", cmProperty::VARIABLE, + "Default value for WIN32_EXECUTABLE of targets.", + "This variable is used to initialize the " + "WIN32_EXECUTABLE property on all the targets. " + "See that target property for additional information.", + false, + "Variables that Control the Build"); + cm->DefineProperty + ("CMAKE_MACOSX_BUNDLE", cmProperty::VARIABLE, + "Default value for MACOSX_BUNDLE of targets.", + "This variable is used to initialize the " + "MACOSX_BUNDLE property on all the targets. " + "See that target property for additional information.", + false, + "Variables that Control the Build"); // Variables defined when the a language is enabled These variables will // also be defined whenever CMake has loaded its support for compiling (LANG) |