summaryrefslogtreecommitdiffstats
path: root/Modules/Dart.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Convert builtin help to reStructuredText source filesKitware Robot2013-10-151-7/+17
| | | | | | | | Run the convert-help.bash script to convert documentation: ./convert-help.bash "/path/to/CMake-build/bin" Then remove it.
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-6/+6
| | | | | | | | | | | | | | | | | Ancient versions of CMake required else(), endif(), and similar block termination commands to have arguments matching the command starting the block. This is no longer the preferred style. Run the following shell code: for c in else endif endforeach endfunction endmacro endwhile; do echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | egrep -z -v 'Tests/CMakeTests/While-Endwhile-' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Convert CMake-language commands to lower caseKitware Robot2012-08-131-40/+40
| | | | | | | | | | | | | | | | | Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code: cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done >convert.sed && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' | egrep -z -v '^(Utilities/cm|Source/kwsys/)' | xargs -0 sed -i -f convert.sed && rm convert.sed
* Remove trailing whitespace from most CMake and C/C++ codeKitware Robot2012-08-131-9/+9
| | | | | | | | | | | | | | | | | Our Git commit hooks disallow modification or addition of lines with trailing whitespace. Wipe out all remnants of trailing whitespace everywhere except third-party code. Run the following shell code: git ls-files -z -- \ bootstrap doxygen.config '*.readme' \ '*.c' '*.cmake' '*.cpp' '*.cxx' \ '*.el' '*.f' '*.f90' '*.h' '*.in' '*.in.l' '*.java' \ '*.mm' '*.pike' '*.py' '*.txt' '*.vim' | egrep -z -v '^(Utilities/cm|Source/(kwsys|CursesDialog/form)/)' | egrep -z -v '^(Modules/CPack\..*\.in)' | xargs -0 sed -i 's/ \+$//'
* Modules: Fix spelling 'To distributed' -> 'To distribute'Todd Gamblin2010-08-091-1/+1
|
* Convert CMake non-find modules to BSD LicenseBrad King2009-09-281-0/+14
| | | | | | | This adds copyright/license notification blocks CMake's non-find modules. Most of the modules had no notices at all. Some had notices referring to the BSD license already. This commit normalizes existing notices and adds missing notices.
* ENH: use ctest to drive dashboards for make targets as opposed to tclshKen Martin2008-01-311-73/+6
|
* STYLE: find Dart quietly (so it doesn't go in the feature log)Alexander Neundorf2007-08-071-1/+1
| | | | Alex
* STYLE: Added basic usage documentation.Brad King2007-05-151-3/+13
|
* ENH: this variable overrides all PROJECT_URL. Check the dashboard, all ↵Sebastien Barre2007-04-101-3/+0
| | | | projects have the wrong URL in their "Home" button. Other variables (like ROLLUP_URL) were moved a while ago, for some reasons this one is still here.
* ENH: add documentation support for modulesBill Hoffman2005-12-141-5/+5
|
* STYLE: Fix typoAndy Cedilnik2005-08-031-216/+19
|
* ENH: Added VS8 support for DART_CXX_NAME.Brad King2005-07-261-1/+5
|
* ENH: Several improvements and cleanups:Andy Cedilnik2005-07-181-10/+16
| | | | | | | 1. Add long command line arguments for every argument 2. Add a way to overwrite CTest configuration by providing --overwrite TimeOut=10 3. Improve argument parsing. 4. Add submit index argument
* ENH: fixed some spelling errorsKen Martin2005-06-201-2/+2
|
* STYLE: Fixed spelling of "memmory".Brad King2005-04-061-1/+1
|
* BUG: By default disable new files.Andy Cedilnik2005-04-041-3/+10
|
* ENH: Rename the DartConfiguration.tcl to CTestConfiguration.iniAndy Cedilnik2005-04-011-1/+1
|
* BUG: Change error to warningAndy Cedilnik2005-03-011-1/+1
|
* BUG: Clean the messagesAndy Cedilnik2005-02-161-4/+2
|
* ENH: Reorganize and add subversion supportAndy Cedilnik2005-02-161-0/+32
|
* ENH: Better checking for Dart. Closes Bug #1505 - Configuration fails to ↵Andy Cedilnik2005-01-281-5/+10
| | | | create Makefile
* ENH: Enable compression and use the new trigger scriptAndy Cedilnik2005-01-271-1/+2
|
* ENH: If dart or ctest are not found, use ctest. For default drop location ↵Andy Cedilnik2004-10-121-90/+97
| | | | etc, support http submit (just set DROP_METHOD to http. Only look for tclsh if DART_ROOT is set
* ENH: Add MemCheck to the list of Make targets. Closes Bug #1016 - Testing ↵Andy Cedilnik2004-07-291-1/+1
| | | | targets in Makefile
* DOC: Fix typoAndy Cedilnik2004-07-271-1/+1
|
* ENH: Allow project to overwrite CMAKE_SYSTEM_NAME part of default BUILDNAMEAndy Cedilnik2004-07-271-2/+4
|
* fix for multiple nexted projectsKen Martin2004-01-021-4/+14
|
* ENH: Mark things as advancedAndy Cedilnik2003-12-171-10/+12
|
* ENH: Add suppression fileAndy Cedilnik2003-12-161-0/+1
|
* ENH: Add initial memory check support which works for ValgrindAndy Cedilnik2003-12-151-2/+18
|
* ENH: Improve coverage on systems with multiple gcov commandsAndy Cedilnik2003-12-081-0/+2
|
* BUG#199: If DART_EXPERIMENTAL_USE_PROJECT_NAME is set, the PROJECT_NAME will ↵Brad King2003-11-121-2/+6
| | | | be included in the name of the Experimental and ExperimentalSubmit targets.
* ENH: Take Purify out because it is not implemented yetAndy Cedilnik2003-08-111-1/+2
|
* ENH: Replace WRITE_FILE with FILE(WRITE and FILE(APPEND. Replace ↵Andy Cedilnik2003-07-111-5/+5
| | | | MAKE_DIRECTORY with FILE(MAKE_DIRECTORY, replace STRING(ASCII things
* ENH: add all targets for dashboard build typesBill Hoffman2003-06-031-2/+5
|
* fixed andy sloppy code againKen Martin2003-05-021-1/+0
|
* ENH: Fix some dart issues. Now it works fine without dart.Andy Cedilnik2003-05-021-91/+128
|
* On borland and cygwin remove .EXEAndy Cedilnik2003-03-061-3/+8
|
* Add Update and configure steps where missingAndy Cedilnik2003-03-031-1/+5
|
* Start cleaning global namespaceAndy Cedilnik2003-03-031-6/+10
|
* On windows but not on borland, look at cmake_build_tool instead of compiler ↵Andy Cedilnik2003-02-271-5/+5
| | | | to determine build name. Otherwise they will all be cl
* Use more condense buildname. If this works fine we can make cmBuildName ↵Andy Cedilnik2003-02-271-1/+16
| | | | command deprecated
* Use simple defaults if DartConfig does not exist. This way you can use dart ↵Andy Cedilnik2003-02-201-1/+26
| | | | to build any project
* ENH: unify EnableLanguage across all generatorsBill Hoffman2002-12-051-2/+2
|
* Add option to control number of errors sent to dashbaordIan Scott2002-10-111-0/+4
|
* Dart now has a configure optionIan Scott2002-09-031-3/+7
|
* fixed another bugKen Martin2002-06-181-1/+1
|
* fixed bugKen Martin2002-06-181-1/+1
|
* ENH: change so that on all make based systems all dart targets are addedBill Hoffman2002-06-141-1/+3
|