summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Add basic flags for Portland Group fortran compiler.Brad King2008-05-171-0/+8
|
* ENH: Allow users to specify a custom Info.plist templateBrad King2008-05-173-74/+94
| | | | | | - Create MACOSX_BUNDLE_INFO_PLIST target property to specify template. - Look for MacOSXBundleInfo.plist.in in CMAKE_MODULE_PATH by default. - See issue #6983.
* BUG: Fix previous change to file(STRINGS) command.Brad King2008-05-171-10/+6
| | | | | - Previous change added form-feed as a string terminator. - Instead it should just be recognized as a valid string character.
* STYLE: Nightly Date StampBrad King2008-05-171-1/+1
|
* ENH: Add Linux-PGI-Fortran platform file to support the Portland Group ↵Brad King2008-05-161-0/+1
| | | | Fortran compiler (PGI).
* ENH: Teach Fortran compiler identification about the Portland Group compiler ↵Brad King2008-05-162-5/+11
| | | | (PGI).
* COMP: Fix build with concept checking of STL.Brad King2008-05-164-14/+59
| | | | - Fix cmSourceGroup to not use std::vector with an incomplete type.
* ENH: Add assignment operator to KWSys RegularExpression.Brad King2008-05-162-0/+37
|
* STYLE: Nightly Date StampBrad King2008-05-161-1/+1
|
* ENH: Add cross compiling support in the GUI in the same dialog that prompts forClinton Stimpson2008-05-1515-282/+1298
| | | | | | | | | | the generator on the first configure. It either ask for a toolchain file or asks for all the information a toolchain file might contain. Also added option for setting non-default compilers if not cross compiling. Fixes #6849. Also a bit of code cleanup and re-organizing.
* BUG: make the toolchain-prefix recognition work with prefixes which containAlexander Neundorf2008-05-153-18/+27
| | | | | | | dots (as in arm-unknown-nto-qnx6.3.0-gcc.exe), NAME_WE returns only up to the 6, instead of everything in front of the .exe Alex
* STYLE: Nightly Date StampBrad King2008-05-151-1/+1
|
* ENH: In KWSys set the IMPLICIT_DEPENDS_INCLUDE_TRANSFORM property.Brad King2008-05-141-0/+8
| | | | | | | - Tells CMake about the KWSYS_HEADER macro. - Enables implicit dependencies of private source files. - When a CMake new enough to support the property is required the "#if 0" hack can be removed from the source files.
* ENH: Update BuildDepends test to check #include lines with macros.Brad King2008-05-145-12/+75
| | | | | | | - Tests IMPLICIT_DEPENDS_INCLUDE_TRANSFORM properties. - See issue #6648. - Works without help in VS IDEs due to native dependency handling. - Xcode needs help to rebuild correctly.
* ENH: Allow users to specify macro-like #include line transforms for ↵Brad King2008-05-143-0/+70
| | | | | | | | dependency scanning. - Define IMPLICIT_DEPENDS_INCLUDE_TRANSFORM property on targets and directories. - Make the directory version inherited. - See issue #6648.
* ENH: Teach cmDependsC about user-configured macro transformations.Brad King2008-05-142-0/+123
| | | | | | - Syntax is SOME_MACRO(%)=value-with-% - Later we will configure these with target and directory properties. - See issue #6648.
* ENH: Add SKIP_RULE_DEPENDS option for add_custom_command()Brad King2008-05-148-10/+61
| | | | | | - Allows make rules to be created with no dependencies. - Such rules will not re-run even if the commands themselves change. - Useful to create rules that run only if the output is missing.
* STYLE: Nightly Date StampBrad King2008-05-141-1/+1
|
* BUG: if CPACK_NSIS_MODIFY_PATH was OFF then the PATH was automatically modifiedBill Hoffman2008-05-131-1/+2
|
* STYLE: add "--help-policy" and "--help-policies" to the documentationAlexander Neundorf2008-05-132-1/+22
| | | | | | | -generate and install the policy documentation files -generate and install the docbook files for cmake, ctest, cpack, ccmake (cmake-gui not yet ?) Alex
* BUG: When byte order is not known at compile time make sure NeedSwap in ↵Brad King2008-05-131-0/+2
| | | | cmELF is still initialized.
* ENH: In cmELF it is okay if the byte order is not known at compile time.Brad King2008-05-131-0/+1
| | | | - We perform a runtime check of the input file anyway.
* ENH: Add ARM support to KWSys CPU header.Brad King2008-05-131-0/+8
| | | | - Patch from Pierre Habouzit
* ENH: all ctype function have the same issue: char can be signed or unsigned, ↵Mathieu Malaterre2008-05-131-1/+1
| | | | since isspace only deal with >=0 value (except EOF) one has to first cast it to unsigned char
* STYLE: Nightly Date StampBrad King2008-05-131-1/+1
|
* BUG: make ENABLE_LANGUAGE(ASM-ATT OPTIONAL) work again: if it didn't workAlexander Neundorf2008-05-121-1/+1
| | | | | | but was optional, don't delete the cache Alex
* STYLE: use IF(NOT ...) instead of IF() ELSE() ... ENDIF()Alexander Neundorf2008-05-121-3/+2
| | | | Alex
* BUG: Make sure all source files are found before generating.Brad King2008-05-124-0/+56
| | | | | | | | - Previously this was done implicitly by the check for a target link language which checked all source full paths. - The recent change to support computing a link language without finding all the source files skipped the implicit check. - This change adds an explicit check to find all source files.
* BUG: make "cmake -Wno-dev ../srcdir" work, advancing i had the effect thatAlexander Neundorf2008-05-121-3/+1
| | | | | | | | | the argument after -Wno-dev was skipped, which happened to be the source directory, and so the current working directory was assumed as source directory, although it was the build directory (maybe this didn't have an effect if there was already a CMakeCache.txt in the build dir) Alex
* COMP: warning, isprint and isspace take int args.Bill Lorensen2008-05-121-1/+1
|
* STYLE: use lower case also for the ctest-specific commands, as in cmakeAlexander Neundorf2008-05-1211-23/+23
| | | | | | I hope I didn't make a typo anywhere, at least the tests still succeed Alex
* STYLE: Nightly Date StampBrad King2008-05-121-1/+1
|
* BUG: fix #6375: print the variables which were not found, so it's easier toAlexander Neundorf2008-05-111-2/+7
| | | | | | see what went wrong Alex
* STYLE: Nightly Date StampBrad King2008-05-111-1/+1
|
* COMP: sprintf warnings. DWORD should use %ld rather than %d. Also, const ↵Bill Lorensen2008-05-113-11/+11
| | | | char *p, a shadowed variable warning.
* BUG: fix #6993Alexander Neundorf2008-05-101-19/+24
| | | | | | | | | | | | FindCurses.cmake is now almost exactly reverted back to the state when CURSES_LIBRARY and CURSES_INCLUDE_PATH where set for compatibility but not in the cache. It is important that CURSES_CURSES_LIBRARY and CURSES_NCURSES_LIBRARY really contain the path to these files. Later on CURSES_LIBRARY is set to the one of the two which will be used as curses library. This is now done in the cache, without FORCE. So preloading the cache still seems to work (at least what I tested). Alex
* BUG: Fix generation of some paths into .cmake files in the build tree to ↵Brad King2008-05-102-4/+6
| | | | escape strings for the CMake language. This fix allows users to put double quotes in the SOVERSION of a shared library.
* BUG: Fix logic that loops over multiple output pairs to not loop beyond the ↵Brad King2008-05-101-18/+15
| | | | vector when there are an odd number of entries.
* ENH: make sure english is used for output of gcovBill Hoffman2008-05-101-0/+2
|
* STYLE: Nightly Date StampBrad King2008-05-101-1/+1
|
* BUG: Fix FindBoost version variable names to correct bug in Boost version ↵Douglas Gregor2008-05-101-9/+9
| | | | detection
* STYLE: insert newlines after listitem so the generated lines don't getAlexander Neundorf2008-05-091-1/+1
| | | | | | several thousand characters long Alex
* ENH: Qt/Mac binary install puts QtCLucene library in a different place than theClinton Stimpson2008-05-091-0/+4
| | | | normal Qt frameworks. Let's find it.
* STYLE: Nightly Date StampBrad King2008-05-091-1/+1
|
* ENH: fix for 64 bit cmake on macBill Hoffman2008-05-091-0/+4
|
* BUG:6990 fix crash with set_source_files_propertiesBill Hoffman2008-05-081-1/+2
|
* BUG: 0006988 do not set coverage to false when it is notBill Hoffman2008-05-081-1/+1
|
* ENH: Light refactoring of implicit dependency scanning configuration ↵Brad King2008-05-087-102/+88
| | | | | | implementation. - Move lookup of config variables from cmLocalUnixMakefileGenerator3 to cmDepends hierarchy.
* STYLE: Nightly Date StampBrad King2008-05-081-1/+1
|
* BUG: Fix repeated re-scanning of dependencies when the results do not change.Brad King2008-05-071-5/+8
| | | | | - We re-scan deps when DependInfo.cmake is newer than depend.internal - Therefore depend.internal should not be copy-if-different