summaryrefslogtreecommitdiffstats
path: root/Help/prop_tgt/FOLDER.rst
Commit message (Collapse)AuthorAgeFilesLines
* Help: Improve documentation formatingBartosz Kosiorek2019-04-041-3/+3
|
* Add CMAKE_FOLDER variable to initialize FOLDER target propertyMarc B2018-03-291-0/+3
| | | | | | | | | | | | | | | | | This can be used for example to organize all following targets into one Visual Studio folder: set(CMAKE_FOLDER Libraries) add_subdirectory(libA) add_subdirectory(libB) set(CMAKE_FOLDER Executables) add_subdirectory(progA) Another possibility is using the current directory name for all following targets in subdirectories: get_filename_component(dirname "${CMAKE_CURRENT_SOURCE_DIR}" NAME) string(APPEND CMAKE_FOLDER "/${dirname}")
* Convert builtin help to reStructuredText source filesKitware Robot2013-10-151-0/+10
Run the convert-help.bash script to convert documentation: ./convert-help.bash "/path/to/CMake-build/bin" Then remove it.