summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: merge CMake-CrossCompileBasic to HEADAlexander Neundorf2007-05-1738-699/+1311
| | | | | | | | | | | | | | | | | | | | | | | | -add a RESULT_VARIABLE to INCLUDE() -add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain -have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system) -use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to run the executables if they have a different suffix because they are probably crosscompiled, but nevertheless it should be able to find them -make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE -support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.) -move ranlib on OSX from the file command to a command in executed in cmake_install.cmake -add support for stripping during install in cmake_install.cmake -split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools -remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms -create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these -add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a list of directories which will be prepended to all search directories, right now as a cmake variable, turning it into a global cmake property may need some more work -remove cmTestTestHandler::TryExecutable(), it's unused -split cmFileCommand::HandleInstall() into slightly smaller functions Alex
* BUG: Fix ExpandListArgument when the string ends in a backslash.Brad King2007-05-171-0/+5
|
* BUG: An empty configuration name is equivalent to no configuration.Brad King2007-05-171-1/+1
|
* ENH: Added testing for custom command line arguments containing all special ↵Brad King2007-05-177-2/+112
| | | | characters on the US keyboard. Fixed curly brace arguments on borland and % arguments in mingw32-make.
* ENH: Added more special unix shell characters that require quoting. Added ↵Brad King2007-05-172-7/+18
| | | | escaping of % as %% for shells inside mingw32-make.
* ENH: fix up compiler id to be more robustBill Hoffman2007-05-173-6/+13
|
* BUG: make sure this thing compiles on 64 bit machinesBill Hoffman2007-05-171-1/+5
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-171-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-161-1/+1
|
* BUG: Shell escaping needs to write % as %% for VS IDE.Brad King2007-05-161-0/+23
|
* ENH: Enabled preprocessor make rules for Watcom.Brad King2007-05-161-0/+8
|
* BUG: Watcom WMake needs empty rule commands even for symbolic targets. This ↵Brad King2007-05-164-10/+14
| | | | fixes the cmake_force target.
* BUG: Do not send both SIGSTOP and SIGKILL when killing a process. The ↵Brad King2007-05-161-5/+7
| | | | SIGSTOP seems to be able to block the SIGKILL occasionally. Also the SIGKILL is sufficient since the process table entry will still exist until it is reaped with waitpid.
* BUG: Disable test of feature that is not documented or implemented everywhere.Brad King2007-05-166-3/+12
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-161-1/+1
|
* BUG: Do not emit /usr/lib32 or /usr/lib64 as linker paths. Submitted by ↵Brad King2007-05-161-0/+2
| | | | David Faure.
* BUG: check in the rest of the changes to move from c to cxxAndy Cedilnik2007-05-161-2/+2
|
* BUG: fix test for hp move to c++ to avoid ansi issues and produce a message ↵Andy Cedilnik2007-05-162-2/+9
| | | | if the compile fails, (really checked in by Bill H.)
* BUG: fix segfault when trying to get the object file for a sourcefile in anAlexander Neundorf2007-05-151-12/+15
| | | | | | unknown language via GET_TARGET_PROPERTY(), as reported by Trevor Kellaway Alex
* STYLE: Added basic usage documentation.Brad King2007-05-152-5/+23
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-151-1/+1
|
* STYLE: fix line lengthsAlexander Neundorf2007-05-143-7/+11
| | | | Alex
* ENH: revert back to SUBDIRS so that CMake can be built with 2.2Ken Martin2007-05-141-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-141-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-131-1/+1
|
* ENH: revert to SUBDIRS to make sure cmake can be built with 2.2Bill Hoffman2007-05-131-14/+14
|
* COMP: Need CMake 2.4 or a bootstrap cmake that has ADD_SUBDIRECTORY to build.Brad King2007-05-133-3/+3
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-121-1/+1
|
* BUG: Fixed generation of XCODE_DEPEND_HELPER.make into proper directory. ↵Brad King2007-05-112-21/+20
| | | | Cleaned up duplicate code created by recent changes.
* ENH: minor fixesKen Martin2007-05-112-10/+11
|
* ENH: some more CMakeList cleanupsKen Martin2007-05-1112-173/+65
|
* ENH: more cleanup of some CMakeLists filesKen Martin2007-05-113-1259/+1317
|
* BUG: const char* FilePath could point to a non-existent std::string forAlexander Neundorf2007-05-111-1/+1
| | | | | | | commands used in a macro, using a std::string instead copies the contents so this works (correct error message) Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-05-111-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-05-101-1/+1
|
* ENH: add KWStyle supportBill Hoffman2007-05-106-1/+80
|
* BUG: fix -D escaped quotes for watcomBill Hoffman2007-05-104-1/+22
|
* ENH: start trying to cleanup CMakeLists filesKen Martin2007-05-103-143/+143
|
* STYLE: fix line lengthAlexander Neundorf2007-05-104-6/+11
| | | | Alex
* ENH: make sure escaping is done for strings on the command lineBill Hoffman2007-05-101-0/+1
|
* ENH: add test for a simple depend test, does an exe re-link if a library ↵Bill Hoffman2007-05-101-0/+9
| | | | that it uses changes
* ENH: add test for build dependsBill Hoffman2007-05-102-16/+31
|
* ENH: fix for move of trace dependsBill Hoffman2007-05-101-1/+15
|
* ENH: add a test to make sure Xcode does not break againBill Hoffman2007-05-093-0/+57
|
* BUG: fix problem for non-C/CXX languages with Visual Studio, theAlexander Neundorf2007-05-097-23/+36
| | | | | | | dependencies for the custom commands added for java were not handled correctly. Needs more work. Alex
* ENH: fix for older xcode and framework createAndy Cedilnik2007-05-091-1/+10
|
* BUG: Fixed cmLocalVisualStudio7Generator to deal with quotes in macro ↵Brad King2007-05-097-12/+53
| | | | definitions properly. This addresses bug#4983.
* STYLE: functions use upper case for the first letterAlexander Neundorf2007-05-092-6/+6
| | | | Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-05-091-1/+1
|
* ENH: now target names can be used in add_custom_command() andAlexander Neundorf2007-05-0928-204/+399
| | | | | | | | | | add_custom_target() as COMMAND, and cmake will recognize them and replace them with the actual output path of these executables. Also the dependency will be added automatically. Test included. ENH: moved TraceVSDependencies() to the end of GlobalGenerator::Configure(), so it is done now in one central place Alex