summaryrefslogtreecommitdiffstats
path: root/Tests/COnly/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Remove CMake-language block-end command argumentsKitware Robot2012-08-131-3/+3
| | | | | | | | | | | | | | | | | 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
* Fix CXX/Fortran MODULE flags when enabled before C (#12929)Brad King2012-02-031-0/+2
| | | | | | | | | | | | | | | If CXX or Fortran is enabled before C then the values of CMAKE_SHARED_MODULE_C_FLAGS CMAKE_SHARED_MODULE_CREATE_C_FLAGS may not be available. On platforms where MODULE library (plugin) creation is the same as SHARED library creation initialize the MODULE creation flags from the SHARED creation flags of the matching language instead of assuming that C has been enabled first. Teach the COnly and CxxOnly tests to build MODULE libraries. The latter covers this specific case.
* ENH: preclean some warningsKen Martin2008-03-251-0/+1
|
* BUG: fix for bug 6172 add get source file prop LANGUAGEBill Hoffman2007-12-181-0/+6
|
* ENH: change to libs that are not realBill Hoffman2007-12-071-1/+1
|
* BUG: fix for bug 5455, handle nodefaultlib with more than one libBill Hoffman2007-12-061-1/+4
|
* ENH: some more CMakeList cleanupsKen Martin2007-05-111-3/+3
|
* COMP: converted to lowercase commandsKen Martin2005-06-201-8/+8
|
* ERR: Too much commitsAndy Cedilnik2004-02-291-1/+1
|
* ERR: Fix GetModulesFileAndy Cedilnik2004-02-291-1/+1
|
* ENH: Attempt to add debug library postfix for visual studio 6Andy Cedilnik2003-10-311-0/+2
|
* Rename libraries from c1 to testc1Andy Cedilnik2003-01-021-3/+3
|
* Test conversion from ascii to stringAndy Cedilnik2003-01-011-0/+3
|
* Test also stating and shared librariesAndy Cedilnik2002-12-311-0/+3
|
* If you specify header file as source, it should still use C compiler and not ↵Andy Cedilnik2002-10-061-1/+1
| | | | CXX. Also fix COnly test so that it make sure that this still works...
* ENH: add enable language support for PROJECT command, this means that a C ↵Bill Hoffman2002-04-021-0/+3
only project can be built with cmake, even without a cxx compiler