diff options
author | Alex Neundorf <neundorf@kde.org> | 2013-06-28 19:40:16 (GMT) |
---|---|---|
committer | Alex Neundorf <neundorf@kde.org> | 2013-06-28 19:40:16 (GMT) |
commit | ba0e06f250665ee985bb6e94dbee3ca8009b60a7 (patch) | |
tree | ba7185d7a6527948d45e07dd187538c19a6f021a /Source/cmTarget.cxx | |
parent | daaf6283f5c0e8b7ea7ee93f983ad56d4498788d (diff) | |
download | CMake-ba0e06f250665ee985bb6e94dbee3ca8009b60a7.zip CMake-ba0e06f250665ee985bb6e94dbee3ca8009b60a7.tar.gz CMake-ba0e06f250665ee985bb6e94dbee3ca8009b60a7.tar.bz2 |
automoc: add a global AUTOMOC_TARGETS_FOLDER property
This has been requested, along with a patch, by Shaun Williams
in http://public.kitware.com/Bug/view.php?id=13788 .
It adds a global property AUTOMOC_TARGETS_FOLDER, which can
be used to group the automoc targets together in a folder e.g.
in Visual Studio.
Alex
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index b14db43..a90fa74 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -236,7 +236,9 @@ void cmTarget::DefineProperties(cmake *cm) "AUTOMOC_MOC_OPTIONS property.\n" "By setting the CMAKE_AUTOMOC_RELAXED_MODE variable to TRUE the rules " "for searching the files which will be processed by moc can be relaxed. " - "See the documentation for this variable for more details."); + "See the documentation for this variable for more details.\n" + "The global property AUTOMOC_TARGETS_FOLDER can be used to group the " + "automoc targets together in an IDE, e.g. in MSVS."); cm->DefineProperty ("AUTOMOC_MOC_OPTIONS", cmProperty::TARGET, |