summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Collapse)AuthorAgeFilesLines
* ENH: merge CMake-CrossCompileBasic to HEADAlexander Neundorf2007-05-1717-162/+361
| | | | | | | | | | | | | | | | | | | | | | | | -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
* 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
|
* ENH: Enabled preprocessor make rules for Watcom.Brad King2007-05-161-0/+8
|
* STYLE: Added basic usage documentation.Brad King2007-05-152-5/+23
|
* ENH: initial support for creation of frameworks on MacBill Hoffman2007-05-082-0/+33
|
* BUG: Detect debian with existence of /etc/debian_version so things work in a ↵Brad King2007-05-071-13/+3
| | | | chroot install. This is suggested in bug#4805.
* ENH: Merging CompilerId updates from branch CMake-Modules-CompilerId to the ↵Brad King2007-05-0312-47/+224
| | | | main tree. Changes between CMake-Modules-CompilerId-mp1 and CMake-Modules-CompilerId-mp2 are included.
* ENH: Changed GNUC compiler id name to GNU.Brad King2007-05-012-2/+2
|
* STYLE: Added comment explaining choice of file extension.Brad King2007-04-301-0/+3
|
* BUG: Need to install CMakeCXXCompilerId.cpp so that C++ compiler ↵Brad King2007-04-301-0/+1
| | | | identification works in an install tree.
* STYLE: comment which says which variables this macro setsAlexander Neundorf2007-04-301-0/+2
| | | | Alex
* STYLE: use the newer FIND_XXX syntax, which should find MPI in even moreAlexander Neundorf2007-04-301-7/+7
| | | | | | | directories and doesn't require to list standard directories like /usr/lib, etc. Alex
* BUG: also install CMakePlatformId.h, otherwise the check for the compiler idAlexander Neundorf2007-04-301-0/+1
| | | | | | works only when building cmake itself, but not with an installed cmake Alex
* BUG: if /opt/lib and /opt/csw/lib are searched for libs, then /opt/includeAlexander Neundorf2007-04-301-0/+1
| | | | | | | and /opt/csw/include should also be searched for headers (according to google they also exist) Alex
* ENH: Merging CompilerId implementation from branch CMake-Modules-CompilerId ↵Brad King2007-04-288-67/+330
| | | | to the main tree. Changes between CMake-Modules-CompilerId-bp and CMake-Modules-CompilerId-mp1 are included.
* STYLE: fix typo "CCC" -> "CC", add comments which variables it setsAlexander Neundorf2007-04-251-0/+7
| | | | Alex
* ENH: Add CMAKE_EXE_EXPORTS_C_FLAG and CMAKE_EXE_EXPORTS_CXX_FLAG to support ↵Brad King2007-04-181-0/+2
| | | | executables that export symbols.
* ENH: Added CMAKE_EXE_EXPORTS_C_FLAG and CMAKE_EXE_EXPORTS_CXX_FLAG to ↵Brad King2007-04-182-0/+4
| | | | support executables that export symbols.
* ENH: Added CMAKE_SHARED_MODULE_LOADER_C_FLAG and ↵Brad King2007-04-171-0/+2
| | | | CMAKE_SHARED_MODULE_LOADER_CXX_FLAG to support linking plugins to executables.
* 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: Added option CMAKE_INSTALL_SO_NO_EXE on linux to choose whether the ↵Brad King2007-04-101-0/+37
| | | | default permissions for shared libraries include the executable bit. This is necessary to support the conflicting policies of Debian and Fedora. These changes address bug#4805.
* ENH: Enabled use of soname and therefore versioning symlinks. Patch is from ↵Brad King2007-04-101-0/+2
| | | | bug#4558.
* BUG: Revert "Fix kwstyleSource/CTest/cmCTestBuildHandler.cxx"Andy Cedilnik2007-04-042-36/+16
|
* BUG: fix for bug 4605Bill Hoffman2007-04-041-4/+22
|
* COMP: Fix kwstyleSource/CTest/cmCTestBuildHandler.cxxAndy Cedilnik2007-04-042-16/+36
|
* ENH: Added target property ENABLE_EXPORTS for executable targets. It ↵Brad King2007-03-222-9/+22
| | | | enables the executables for linking by loadable modules that import symbols from the executable. This finishes the executable import library support mentioned in bug #4210.
* BUG: Disable creation of import libraries for executables on Borland until ↵Brad King2007-03-201-2/+2
| | | | it can be made optional. Otherwise all executables get a .lib with the same name which is unexpected behavior for users.
* ENH: Added support for import libraries created by executable and module ↵Brad King2007-03-194-10/+13
| | | | targets. The module import libraries should never be used but some windows compilers always create them for .dll files since there is no distinction from shared libraries on that platform. The executable import libraries may be used to create modules that when loaded bind to symbols from the executables. This is an enhancement related to bug#4210 though not requested by it explicitly.
* BUG: Do not create import library for MODULEs. This is an incremental fix ↵Brad King2007-03-101-6/+6
| | | | for bug#4210.
* BUG: Fixed MSVC8 module build rule to not use /implib option. This is an ↵Brad King2007-03-101-8/+12
| | | | incremental fix for bug#4210.
* BUG: Shared library creation should use /implib option to specify the name ↵Brad King2007-03-091-6/+7
| | | | of the import library explicitly. This is an incremental step for bug #4210.
* BUG: Get rid of ancient variables CMAKE_CXX_WARNING_LEVEL, ↵Brad King2007-03-071-5/+1
| | | | CMAKE_CXX_USE_RTTI, CMAKE_CXX_STACK_SIZE which are only partially implemented and now taken care of by flag mapping anyway.
* BUG: untested fix for newlines in the output of pkg configKen Martin2007-03-071-7/+16
|
* STYLE: Defautl answer for the license is noAndy Cedilnik2007-03-061-1/+1
|
* ENH: patch applied for bug 4517Ken Martin2007-03-051-38/+25
|
* BUG: Do not create import library for MODULEs. The TARGET_IMPLIB name is ↵Brad King2007-03-031-10/+14
| | | | not set correctly for MODULE rules anyway.
* BUG: Propagate platform settings such as CMAKE_OSX_ARCHITECTURES to the try ↵Andy Cedilnik2007-03-021-0/+5
| | | | compile
* ENH: limit the output of system information to no more than 50K per fileKen Martin2007-03-021-1/+1
|
* BUG: Fix bug introduced by revision 1.67. The qmake query mode prints ↵Brad King2007-03-011-2/+5
| | | | information to stderr on some platforms. The OUTPUT_VARIABLE and ERROR_VARIABLE must be the same variable to get all the output.
* ENH: improvementsKen Martin2007-02-272-0/+6
|
* ENH: added for system information command line optionKen Martin2007-02-262-0/+174
|
* BUG: fix typo reported by Duncan Mac VicarAlexander Neundorf2007-02-261-1/+1
| | | | Alex
* ENH: force c++ when building c++ objectsBill Hoffman2007-02-211-0/+2
|
* ENH: better processor detection on linuxBill Hoffman2007-02-211-6/+11
|
* ENH: remove df because df is a unix utilitiyBill Hoffman2007-02-211-1/+1
|
* BUG: fix for bug 3950 add support for df compiler on windowsBill Hoffman2007-02-202-1/+69
|
* BUG: fix for bug # 3954 glib with qtBill Hoffman2007-02-201-1/+9
|
* STYLE: fix docs for FindKDE4.cmakeAlexander Neundorf2007-02-201-4/+3
| | | | Alex
* BUG: remove KDE3_ENABLE_FINAL (#4140): it doesn't work currently and IAlexander Neundorf2007-02-202-34/+35
| | | | | | | don't have the time to fix this since it would require bigger changes. Maybe I'll do this if the KDE3 support of CMake becomes more widely used. Alex