summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* BUG: Another space-in-path fix.Brad King2007-08-311-2/+4
|
* BUG: Fix path to CMake executables when run from bootstrap build.Brad King2007-08-311-0/+1
|
* STYLE: rename FILENAME keyword to FILE, because FILENAME is used in no otherAlexander Neundorf2007-08-302-1/+17
| | | | | | place Alex
* STYLE: "Build file" still doesn't work, but now it is at least a bit closer,Alexander Neundorf2007-08-301-1/+1
| | | | | | it needs some more support from CB Alex
* STYLE: add the | to the docsAlexander Neundorf2007-08-301-0/+1
| | | | Alex
* BUG: work if there are spaces in the path to cmakeAlexander Neundorf2007-08-291-4/+6
| | | | Alex
* BUG: make paths with spaces work in CodeBlocksAlexander Neundorf2007-08-291-12/+5
| | | | | | -gcc is always gcc and not mingw Alex
* BUG: this seems to fix the regexp result-storage problem, now it seems the ↵Alexander Neundorf2007-08-291-1/+1
| | | | | | actual result is tored instead of "1" , as it happened for StringFileTest on Windows Alex
* STYLE: add docs about the supported regexp characters and CMAKE_MATCH_(0..9)Alexander Neundorf2007-08-291-1/+14
| | | | Alex
* ENH: also store the group matches from IF( MATCHES) in CMAKE_MATCH_(0..9)Alexander Neundorf2007-08-294-14/+19
| | | | Alex
* BUG: Do not write symbolic make dependencies into depends.internal.Brad King2007-08-291-4/+0
|
* ENH: don't hardcode gccAlexander Neundorf2007-08-292-37/+152
| | | | | | | -put the include dirs in the project file to enable autocompletion -prepare for nmake Alex
* COMP: explicitely cast to int to silence warning with msvc8Alexander Neundorf2007-08-281-1/+1
| | | | Alex
* ENH: add flag so a terminating slash for the link path can be specified ↵Alexander Neundorf2007-08-281-0/+3
| | | | | | (needed by the Digital Mars D compiler) Alex
* STYLE: add links to docsAlexander Neundorf2007-08-281-0/+13
| | | | Alex
* STYLE: fix typoAlexander Neundorf2007-08-281-1/+1
| | | | Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-281-1/+1
|
* BUG: fix #5326: source files with the same name in different groups lead to ↵Alexander Neundorf2007-08-272-22/+43
| | | | | | colliding object file names Alex
* ENH: add install files generators for targets which have PUBLIC_HEADER,Alexander Neundorf2007-08-276-51/+177
| | | | | | | PRIVATE_HEADER or RESOURCE_FILES property, use the destination for the public headers as include directory property for exported libraries Alex
* COMP: disable nmake support until somebody tests itAlexander Neundorf2007-08-271-2/+2
| | | | Alex
* COMP: make it build on NetBSD, which has separate curses and ncurses, soAlexander Neundorf2007-08-276-8/+59
| | | | | | | it has to be detected that curses isn't good enough, but ncurses is, and that ncurses.h instead of curses.h is included Alex
* COMP: remove unused variableAlexander Neundorf2007-08-271-1/+0
| | | | Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-271-1/+1
|
* ENH: add all subdirs of the project to the kdevelop blacklist, so kdevelopAlexander Neundorf2007-08-262-3/+41
| | | | | | doesn't watch these dirs for added or remved files everytime it is started Alex
* COMP: parent is not used anymore with this patch, since now the name isAlexander Neundorf2007-08-263-10/+6
| | | | | | given as a vector of components Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-261-1/+1
|
* STYLE: Nightly Version updateAndy Cedilnik2007-08-251-1/+1
|
* STYLE: fix MSVC warnings by making the cmCommandArgumentsHelper a member ofAlexander Neundorf2007-08-243-16/+27
| | | | | | cmInstallCommandArguments instead of deriving from it Alex
* BUG: fix #4057 (which had several duplicates): handle recursivew source ↵Alexander Neundorf2007-08-244-95/+86
| | | | | | groups better, i.e. multiple sourcegroups with the same end component work now Alex
* ENH: Add InstallNameFixupPath to support installing built frameworks on the ↵David Cole2007-08-244-35/+94
| | | | Mac. Change Application to Applications in the BundleTest. Also correct small typo (tcl->Tcl) noted in bug 4572.
* BUG: handle source_group names which consist only of the delimiter the same ↵Alexander Neundorf2007-08-241-8/+7
| | | | | | was as empty source group names Alex
* ENH: use cmCommandArgumentHelper for INSTALL(TARGETS, FILES, PROGRAMS,Alexander Neundorf2007-08-241-801/+273
| | | | | | | | EXPORTS), saves a lot of code. INSTALL(DIRECTORY) is still done the old way, since this seems to be quite complicated -for INSTALL(TARGETS ): also parse PUBLIC_HEADER, PRIVATE_HEADER, RESOURCE Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-241-1/+1
|
* ENH: class for parsing the arguments for INSTALL()Alexander Neundorf2007-08-233-0/+255
| | | | Alex
* ENH: add support for a default value, fix case when there is no item exceptAlexander Neundorf2007-08-232-3/+10
| | | | | | the own group Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-231-1/+1
|
* ENH: Handle FRAMEWORK and BUNDLE arguments in the INSTALL TARGETS command. ↵David Cole2007-08-225-43/+223
| | | | Work in progress... More to come.
* BUG: if there is no match, don't construct the stl string from a NULLAlexander Neundorf2007-08-221-1/+8
| | | | | | pointer Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-221-1/+1
|
* STYLE: more space in the cmake_install.cmake script (easier to read)Alexander Neundorf2007-08-211-2/+2
| | | | Alex
* COMP: make it build on LinuxAlexander Neundorf2007-08-215-18/+27
| | | | Alex
* BUG: fix segfault if FindFiles() is called without actual match patternAlexander Neundorf2007-08-211-2/+9
| | | | | | | (e.g. FILE(GLOB /usr/include) instead of FILE(GLOB /usr/include/* ) #4620 Alex
* ENH: also check for .hpp and .cxx filesAlexander Neundorf2007-08-211-2/+2
| | | | Alex
* COMP: header was missing...Alexander Neundorf2007-08-211-1/+8
| | | | Alex
* ENH: store the matches for paren-delimited subexpression inAlexander Neundorf2007-08-211-0/+28
| | | | | | | CMAKE_MATCH_[0..9] variables, so to get multiple subexpressions from one string STRING(REGEX MATCH) has to be executed only once Alex
* STYLE: fix documentation for STRING(REPLACE) #5536Alexander Neundorf2007-08-211-8/+4
| | | | Alex
* STYLE: Nightly Version updateAndy Cedilnik2007-08-211-1/+1
|
* STYLE: add some newlines to cmake_install.cmake, so it's easier to readAlexander Neundorf2007-08-203-3/+3
| | | | | | -move the array behind the if, it's unused before it Alex
* STYLE: Fix line length style errors introduced last week.David Cole2007-08-201-2/+4
|
* ENH: also process "~" and paths relative to CMAKE_CURRENT_SOURCE_DIR in Foo_DIRAlexander Neundorf2007-08-201-0/+7
| | | | Alex