summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ENH: if CMAKE_(C|CXX)_COMPILER is preset to a list of two elements, use theAlexander Neundorf2007-07-182-1/+18
| | | | | | first one as the compiler and the second one as ARG1 for the compiler Alex
* ENH: build codeblocks generator also on WindowsAlexander Neundorf2007-07-183-14/+28
| | | | Alex
* STYLE: add more docsBill Hoffman2007-07-171-1/+4
|
* COMP: fix warning about unused variableAlexander Neundorf2007-07-171-2/+2
| | | | Alex
* COMP: fix build on Windows, where GetCurrentDirecty() is redefined toAlexander Neundorf2007-07-172-4/+11
| | | | | | | GetCurrentDirectoryA() -correct return value for md5sum Alex
* STYLE: fix line lengths and add "remove -f" to the docsAlexander Neundorf2007-07-173-25/+30
| | | | Alex
* ENH: produce a lot more output when running with --debug-outputAlexander Neundorf2007-07-176-38/+105
| | | | | | -try to fix build error on HPUX Alex
* ENH: also look in the include/, lib/ and bin/ directories in the cmakeAlexander Neundorf2007-07-171-3/+11
| | | | | | | install dir under windows, this will help e.g. people using kdewininstaller and similar setups Alex
* ENH: don't hardcode the /lib/kde3/ directory for the libtool files, but makeAlexander Neundorf2007-07-172-3/+11
| | | | | | it adjustable and detect if libkdecore.so is a 64bit library Alex
* BUG: fix bootstrapping, md5sum disabled in bootstrapping modeAlexander Neundorf2007-07-161-2/+6
| | | | Alex
* STYLE: remove debug outputAlexander Neundorf2007-07-161-1/+0
|
* BUG: GET_DIRECTORY_PROPERTY(INCLUDE_DIRECTORIES|LINK_DIRECTORIES) wasn'tAlexander Neundorf2007-07-162-35/+36
| | | | | | | | | | | | | | working, for both the result was always empty, since cmMakefile::GetProperty() recognized it as a special property, constructed a correct return value and called cmMakefile::SetProperty() with this list of directories, which then didn't actually set the property, but applied it to the internal vector of include/link directories. The following getPropertyValue in cmMakefile::GetProperty() then still didn't find it and returned nothing. Now for all special property the static string output is used and its content is returned. I'm not sure it is the right way to fix this problem but at least it seems to work and it fixes the Paraview3 build Alex
* ENH: apply patch from Mathieu, add argument -E md5sum to compute md5sums ofAlexander Neundorf2007-07-163-0/+76
| | | | | | files, compatible to md5sum output Alex
* ENH:Bill Hoffman2007-07-161-2/+2
|
* ENH: clean up a bitBill Hoffman2007-07-161-10/+12
|
* BUG: the Plugin test fails on NetBSD, let's see if this fixes itAlexander Neundorf2007-07-161-0/+3
| | | | Alex
* ENH: also add the install base dir of the running cmake to the searchAlexander Neundorf2007-07-161-0/+8
| | | | | | | directories for the FIND_XXX() commands, for the case that somebody has its own install tree Alex
* STYLE: better error message, name the new manpages cmakecommands,Alexander Neundorf2007-07-132-11/+12
| | | | | | cmakecompat, cmakeprops and cmakemodules Alex
* ENH: add DragonFly BSD, which is very close to FreeBSD (#4500)Alexander Neundorf2007-07-131-0/+5
| | | | Alex
* BUG: the SET( ... CACHE INTERNAL) didn't work as expected, since theAlexander Neundorf2007-07-132-4/+0
| | | | | | | | | variable is already added to the cache inside cmTryRunCommand.cxx, so the value used here was ignored. Additionally the INTERNAL made it internal, which shouldn't be done when cross compiling, since here the user is required to edit this variable manually e.g. using ccmake. Alex
* ENH: add a simple CodeBlocks extra generator, early alpha stage, there seemsAlexander Neundorf2007-07-134-1/+337
| | | | | | to be interest in it Alex
* ENH: add the static libs always to the link libs, if they are not used it ↵Alexander Neundorf2007-07-121-0/+10
| | | | | | shouldn't hurt Alex
* ENH: add macro to test if a member has specified struct, e.g.Alexander Neundorf2007-07-122-1/+40
| | | | | | check_struct_has_member("struct stat" st_rdev "${CFG_HEADERS}" HAVE_STRUCT_STAT_ST_RDEV) Alex
* ENH: add support for the ADSP toolchains for Blackfin, Shark and TigerSharkAlexander Neundorf2007-07-126-0/+175
| | | | | | DSPs, patch from Raphael Cotty Alex
* ENH: add LIST(CONTAINS ...) patch from "Miguel A. Figueroa-Villanueva, ↵Alexander Neundorf2007-07-123-1/+57
| | | | | | | | miguelf (AT) ieee.org added tests for LIST(CONTAINS, SORT, REVERSE) Alex
* BUG: honor REQUIRED and QUIETLY (#5312)Alexander Neundorf2007-07-121-9/+13
| | | | Alex
* STYLE: add Readme.txt with instructions how to build cmake, fix #5296Alexander Neundorf2007-07-121-0/+53
| | | | Alex
* BUG: fix screwup in GetDirectoryProp...Ken Martin2007-07-121-0/+1
|
* ENH: second try for handling the linker language with integer priority ↵Alexander Neundorf2007-07-129-60/+89
| | | | | | values (returning a pointer to a string on the stack is no good idea) Alex
* COMP: revert last commit for now, broke Visual StudioAlexander Neundorf2007-07-119-90/+61
| | | | Alex
* ENH: CMAKE_<LANG>_LINKER_PREFERENCE is now an integer priority, not aAlexander Neundorf2007-07-1110-62/+91
| | | | | | | | | | | | | | | | | | | two-step priority (None or Prefered) Current order: ASM 0, C 10, Fortran 20, CXX 30, Java 40 This is the same order as automake choses: http://www.gnu.org/software/automake/manual/html_node/How-the-Linker-is-Chosen.html This change should be backward compatible: if there is a project using fortran and CXX, they had to set the LINKER_LANGUAGE explicitely, otherwise cmake complained (but still generated the project files). Explicitely setting the linker language still overrides automatic detection. If somebody has a custom language for cmake and the PREFERENCE starts with "P", its changed to 100, which gives it preference over all other languages (except the other custom languages which have also "Prefered"). "None" is converted to 0. Alex
* STYLE: sort the property documentation intoAlexander Neundorf2007-07-117-73/+251
| | | | | | global/directory/target/test/sourcefile and variable sections Alex
* ENH: change the way #cmakedefine is changed to #undef, so it is similar toAlexander Neundorf2007-07-111-3/+2
| | | | | | | | | | | | | | | | | | | | | | | what autoconf does. This makes porting software from autoconf to cmake easier, since it's easier to diff the resulting config headers. Now the following #cmakedefine HAVE_STRING_H 1 #cmakedefine HAVE_STRLCAT 1 produce: #define HAVE_STRING_H 1 /* #undef HAVE_STRLCAT */ whereas before they produced: #define HAVE_STRING_H 1 /* #undef HAVE_STRLCAT 1 */ Since it's commented out anyway, it's now change in behaviour. Alex
* ENH: add CMAKE_INCLUDE_FLAG_ASM${ASM_DIALECT} and don't allow presetAlexander Neundorf2007-07-111-13/+12
| | | | | | CMAKE_xxx_INFORMATION files Alex
* STYLE: use EXECUTE_PROCESS() instead of EXEC_PROGRAM()Alexander Neundorf2007-07-111-1/+1
| | | | Alex
* ENH: add the ecos include dir and the ecos definitions by defaultAlexander Neundorf2007-07-101-0/+2
| | | | Alex
* ENH: added some documentation to explain a section of code a bit betterKen Martin2007-07-101-1/+8
|
* ENH: some cleanup of get property commandsKen Martin2007-07-102-77/+80
|
* STYLE: Removed stray comment.Brad King2007-07-091-3/+0
|
* ENH: add support for building eCos applications nativelyAlexander Neundorf2007-07-091-0/+54
| | | | Alex
* COMP: hopefully fix test, finallyAlexander Neundorf2007-07-091-1/+0
| | | | Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-07-091-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-07-091-1/+1
|
* COMP: fix testAlexander Neundorf2007-07-091-3/+3
| | | | Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-07-071-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-07-061-1/+1
|
* BUG: fix testAlexander Neundorf2007-07-061-2/+2
| | | | Alex
* BUG: the cmake deps depend on cmakeAlexander Neundorf2007-07-061-1/+1
| | | | Alex
* COMP: OPTIONAL was missing in ENABLE_LANGUAGE()Alexander Neundorf2007-07-062-14/+19
| | | | | | | -the assembler file seems to work for Linux and FreeBSD -try to fix main() for HP-UX compiler Alex
* STYLE: some more outputAlexander Neundorf2007-07-051-0/+2
| | | | Alex