Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: initial support for assembler in cmake, needs testing by our users | Alexander Neundorf | 2007-06-28 | 1 | -0/+19 |
| | | | | Alex | ||||
* | ENH: Added global property FIND_LIBRARY_USE_LIB64_PATHS to allow lib64 paths ↵ | Brad King | 2007-06-27 | 2 | -0/+8 |
| | | | | to be searched optionally. Turn off the feature on debian systems. This addresses debian report 419007. | ||||
* | ENH: Added GNU/Hurd platform. Taken from debian patch 407155. | Brad King | 2007-06-27 | 1 | -0/+10 |
| | |||||
* | ENH: | Alexander Neundorf | 2007-06-26 | 1 | -1/+1 |
| | |||||
* | ENH: add basic support for sdcc (http://sdcc.sourceforge.net), needs sdcc ↵ | Alexander Neundorf | 2007-06-26 | 1 | -0/+45 |
| | | | | | | (sdcclib) cvs for creating libraries) Alex | ||||
* | STYLE: change global cmake variable CMAKE_TARGET_SUPPORTS_ONLY_STATIC_LIBS | Alexander Neundorf | 2007-06-26 | 2 | -2/+2 |
| | | | | | | to the first global cmake property TARGET_SUPPORTS_SHARED_LIBS Alex | ||||
* | ENH: add support for BlueGene/L | Alexander Neundorf | 2007-06-22 | 1 | -0/+22 |
| | | | | Alex | ||||
* | ENH: print a warning if ADD_LIBRARY( SHARED/MODULE ) is used and the target | Alexander Neundorf | 2007-06-21 | 1 | -0/+4 |
| | | | | | | platform doesn't support shared libraries Alex | ||||
* | STYLE: add a comment about SetLanguageEnabled() | Alexander Neundorf | 2007-06-11 | 1 | -0/+8 |
| | | | | | | -add a Generic.cmake for target platforms without operating system Alex | ||||
* | ENH: determine typesize by compiling a file and reading strings from the ↵ | Alexander Neundorf | 2007-06-04 | 1 | -5/+0 |
| | | | | | | | | | compiled output. Tested with various gcc, XCode, MSVC7, sdcc For OSX when doing TRY_COMPILE() CMAKE_OSX_ARCHITECTURES is used, if there are different results an error is generated. CMAKE_OSX_ARCHITECTURES can be overwritten for the TRY_COMPILES with CMAKE_TRY_COMPILE_OSX_ARCHITECTURES. Alex | ||||
* | STYLE: move the two CMAKE_SHARED_LIBRARYC/CXX_FLAGS for gcc from | Alexander Neundorf | 2007-05-22 | 1 | -1/+2 |
| | | | | | | CMakeGenericSystem.cmake to gcc.cmake Alex | ||||
* | ENH: move hack to fix "new cmake on old build tree on OSX doesn't have ↵ | Alexander Neundorf | 2007-05-18 | 1 | -0/+9 |
| | | | | | | | | CMAKE_INSTALL_NAME_TOOL in the cache" from cmInstallTargetGenerator.cxx to Darwin.cmake Alex | ||||
* | ENH: Use CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES from platform files to ↵ | Brad King | 2007-05-18 | 1 | -0/+6 |
| | | | | block link directories. | ||||
* | COMP: if a new cmake runs on an old build tree, set CMAKE_LINKER to link to ↵ | Alexander Neundorf | 2007-05-18 | 1 | -0/+8 |
| | | | | | | make it link Alex | ||||
* | COMP: fix link rules with nmake, the linker command has to be converted to ↵ | Alexander Neundorf | 2007-05-18 | 1 | -2/+2 |
| | | | | | | shortpath form for nmake Alex | ||||
* | ENH: merge CMake-CrossCompileBasic to HEAD | Alexander Neundorf | 2007-05-17 | 2 | -50/+54 |
| | | | | | | | | | | | | | | | | | | | | | | | | -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: Enabled preprocessor make rules for Watcom. | Brad King | 2007-05-16 | 1 | -0/+8 |
| | |||||
* | ENH: initial support for creation of frameworks on Mac | Bill Hoffman | 2007-05-08 | 1 | -0/+5 |
| | |||||
* | BUG: Detect debian with existence of /etc/debian_version so things work in a ↵ | Brad King | 2007-05-07 | 1 | -13/+3 |
| | | | | chroot install. This is suggested in bug#4805. | ||||
* | ENH: Merging CompilerId updates from branch CMake-Modules-CompilerId to the ↵ | Brad King | 2007-05-03 | 3 | -0/+62 |
| | | | | main tree. Changes between CMake-Modules-CompilerId-mp1 and CMake-Modules-CompilerId-mp2 are included. | ||||
* | BUG: if /opt/lib and /opt/csw/lib are searched for libs, then /opt/include | Alexander Neundorf | 2007-04-30 | 1 | -0/+1 |
| | | | | | | | and /opt/csw/include should also be searched for headers (according to google they also exist) Alex | ||||
* | ENH: Add CMAKE_EXE_EXPORTS_C_FLAG and CMAKE_EXE_EXPORTS_CXX_FLAG to support ↵ | Brad King | 2007-04-18 | 1 | -0/+2 |
| | | | | executables that export symbols. | ||||
* | ENH: Added CMAKE_EXE_EXPORTS_C_FLAG and CMAKE_EXE_EXPORTS_CXX_FLAG to ↵ | Brad King | 2007-04-18 | 2 | -0/+4 |
| | | | | support executables that export symbols. | ||||
* | ENH: Added CMAKE_SHARED_MODULE_LOADER_C_FLAG and ↵ | Brad King | 2007-04-17 | 1 | -0/+2 |
| | | | | CMAKE_SHARED_MODULE_LOADER_CXX_FLAG to support linking plugins to executables. | ||||
* | ENH: Added option CMAKE_INSTALL_SO_NO_EXE on linux to choose whether the ↵ | Brad King | 2007-04-10 | 1 | -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 King | 2007-04-10 | 1 | -0/+2 |
| | | | | bug#4558. | ||||
* | ENH: Added target property ENABLE_EXPORTS for executable targets. It ↵ | Brad King | 2007-03-22 | 2 | -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 King | 2007-03-20 | 1 | -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 King | 2007-03-19 | 4 | -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 King | 2007-03-10 | 1 | -6/+6 |
| | | | | for bug#4210. | ||||
* | BUG: Fixed MSVC8 module build rule to not use /implib option. This is an ↵ | Brad King | 2007-03-10 | 1 | -8/+12 |
| | | | | incremental fix for bug#4210. | ||||
* | BUG: Shared library creation should use /implib option to specify the name ↵ | Brad King | 2007-03-09 | 1 | -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 King | 2007-03-07 | 1 | -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: Do not create import library for MODULEs. The TARGET_IMPLIB name is ↵ | Brad King | 2007-03-03 | 1 | -10/+14 |
| | | | | not set correctly for MODULE rules anyway. | ||||
* | BUG: Propagate platform settings such as CMAKE_OSX_ARCHITECTURES to the try ↵ | Andy Cedilnik | 2007-03-02 | 1 | -0/+5 |
| | | | | compile | ||||
* | ENH: force c++ when building c++ objects | Bill Hoffman | 2007-02-21 | 1 | -0/+2 |
| | |||||
* | BUG: fix for bug 3950 add support for df compiler on windows | Bill Hoffman | 2007-02-20 | 1 | -0/+68 |
| | |||||
* | ENH: try to force c++ on qnx | Bill Hoffman | 2007-02-20 | 1 | -0/+3 |
| | |||||
* | BUG: Applied patch from bug#4462. | Brad King | 2007-02-19 | 1 | -2/+6 |
| | |||||
* | ENH: add beos file | Bill Hoffman | 2006-12-07 | 1 | -0/+10 |
| | |||||
* | BUG: use different commands for shared libraries and exe for manifest stuff ↵ | Bill Hoffman | 2006-11-11 | 1 | -2/+2 |
| | | | | fix for bug#4039 | ||||
* | ENH: Adding image version number (major.minor) property to windows binaries. ↵ | Brad King | 2006-10-16 | 3 | -11/+27 |
| | | | | Default is 0.0, but the VERSION target property may change the value. Windows now has first-class support for dll and exe versioning. This addresses bug#1219. | ||||
* | BUG: Do not enable -isystem support for Xcode generator until it is implemented. | Brad King | 2006-10-06 | 1 | -0/+6 |
| | |||||
* | ENH: Adding version number to the name of a DLL built in cygwin but not the ↵ | Brad King | 2006-10-05 | 1 | -0/+3 |
| | | | | import library. This addresses bug#3571. | ||||
* | ENH: Enabling link-type selection flags on Cygwin, MSYS, and MinGW. This ↵ | Brad King | 2006-10-05 | 2 | -0/+21 |
| | | | | addresses bug#1644 on these platforms. | ||||
* | BUG: QNX GCC does not have -isystem. | Brad King | 2006-10-05 | 1 | -0/+4 |
| | |||||
* | ENH: Adding SYSTEM option to INCLUDE_DIRECTORIES command. This addresses ↵ | Brad King | 2006-10-05 | 1 | -0/+2 |
| | | | | bug #3462. | ||||
* | BUG: fix for bug# 3584 missing SONAME for fortran on darwin | Bill Hoffman | 2006-10-04 | 1 | -0/+7 |
| | |||||
* | BUG: fix for bug#3652 use link /lib instead of lib | Bill Hoffman | 2006-10-03 | 1 | -1/+1 |
| | |||||
* | ENH: disable static shared stuff on AIX, see comment | Bill Hoffman | 2006-10-03 | 1 | -4/+9 |
| |