summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: put cmake files intoa CMakeFiles subdir to clean up bin treeKen Martin2005-07-291-7/+14
|
* ENH: RUN_TESTS target now uses proper CMAKE_CFG_INTDIR setting to get ↵Brad King2005-07-271-4/+7
| | | | $(IntDir) or $(OutDir) depending on the generator.
* BUG: Generate RUN_TEST target if any tests are thereAndy Cedilnik2005-07-271-2/+10
|
* ENH: make LOCATION an computed property of the target and get rid of a bunch ↵Ken Martin2005-06-221-2/+2
| | | | of const junk
* BUG: Changing to a new test for whether to do relative path conversion. Now ↵Brad King2005-05-161-34/+21
| | | | only paths inside the source or binary trees are converted.
* BUG: filx for old bug in rel path computaiton codeKen Martin2005-05-131-6/+10
|
* ENH: warning fixes and some first steps in cleaning up the convert codeKen Martin2005-05-131-22/+0
|
* ENH: added new methods to convert to HomeRelative pathsKen Martin2005-05-111-2/+21
|
* BUG: Fix bootstrap test on machines with spaces in the pathAndy Cedilnik2005-05-041-3/+6
|
* ENH: No need to convert to output pathAndy Cedilnik2005-05-031-1/+0
|
* ENH: Add option to ignore errors. Only works on makeAndy Cedilnik2005-04-291-9/+10
|
* ENH: Start working on command that will abstract generating of build commandAndy Cedilnik2005-04-281-23/+31
|
* ENH: Improve internal test handling by creating a test class. Command ↵Andy Cedilnik2005-04-241-0/+1
| | | | cmEnableTesting now only sets CMAKE_TESTING_ENABLED and cmAddTest only adds a test to the list. The actual test files are written by local generator. This way we can at some point in the future replace DartTestfile with some XML file
* BUG: fix for bug 1660Bill Hoffman2005-04-051-0/+16
|
* BUG: By default disable new files.Andy Cedilnik2005-04-041-3/+3
|
* ENH: More ctest changes and move SetupTest to superclassAndy Cedilnik2005-04-011-0/+74
|
* ENH: removed GetParentProjectsKen Martin2005-03-291-10/+11
|
* ENH: make sure project map is cleared each time.Bill Hoffman2005-03-221-1/+2
|
* COMP: fix warningKen Martin2005-03-191-1/+1
|
* ENH: big change that includes immediate subdir support, removing the notion ↵Ken Martin2005-03-181-47/+43
| | | | of inherited commands, makefiles no longer read in the parent makefiles but instead inherit thier parent makefiles current settings
* ENH: add support for out of source sourceKen Martin2005-03-141-13/+12
|
* ENH: cleanup by removing all the olf local generate junk that i not longer ↵Ken Martin2005-03-101-57/+27
| | | | needed
* ENH: fix for finding the correct target in the current projectBill Hoffman2005-03-041-3/+9
|
* BUG: Need to configure relative path support for LocalGenerate to support ↵Brad King2005-02-251-0/+3
| | | | old makefile generator.
* ENH: Merged implementations of ConvertToRelative*Path methods. The main ↵Brad King2005-02-241-1/+137
| | | | ConvertToRelativePath method is now in cmGlobalGenerator. It converts paths only if they are at least inside the deepest common directory between the top-level source and build trees. Each cmLocalGenerator instance calls this global method with its own output directory as the "local" argument from which paths are relative. Added separate ConvertToOptionallyRelative path that pays attention to the CMAKE_USE_RELATIVE_PATHS option.
* BUG: Only use the existing CMake(lang)Compiler.cmake file from the build ↵Brad King2005-02-241-13/+23
| | | | tree if it was generated by the same version of CMake.
* COMP: fix warningKen Martin2005-02-221-1/+1
|
* ENH: ctest now uses CMake global generator to do the build part of ↵Ken Martin2005-02-221-19/+73
| | | | build-and-test
* ENH: more tests are passing, relative paths, and external objects are the ↵Bill Hoffman2005-02-171-1/+1
| | | | ones left now
* ENH: more tests are passingBill Hoffman2005-02-161-6/+4
|
* ENH: depends work between targetsBill Hoffman2005-02-031-0/+17
|
* ENH: move project map to global generator baseBill Hoffman2005-01-211-0/+24
|
* ENH: add some comments on how this could be moved to global generatorBill Hoffman2005-01-201-1/+40
|
* BUG: fix for bug 1396, object files could not be used as sources any moreBill Hoffman2004-12-061-0/+16
|
* ENH: shorten the symbols a bit and remove maps of std::string for map of ↵Bill Hoffman2004-09-291-2/+2
| | | | cmStdString
* ENH: change ignore function so that it first checks to see if the extension ↵Bill Hoffman2004-09-241-0/+4
| | | | has a language
* ENH: fix problems with .def and RC filesBill Hoffman2004-09-231-0/+8
|
* ENH: major changes to support addition of languages from cmake modules ↵Bill Hoffman2004-09-221-5/+77
| | | | directory.
* BUG: make sure env CC and CXX are not set for VS IDE buildsBill Hoffman2004-09-151-15/+19
|
* warning fixKen Martin2004-09-061-9/+9
|
* ENH: define language extensions in cmake files and not hard coded, also fix ↵Bill Hoffman2004-09-031-12/+52
| | | | trycompile problem
* ENH: try to initialize all languages at the same timeBill Hoffman2004-08-271-99/+111
|
* ENH: more uniform approach to enable language, one step closer to being able ↵Bill Hoffman2004-08-261-156/+134
| | | | to enable a language without modifing cmake source code
* ENH: use GetRequiredDefinition instead of GetDefinition and crashBill Hoffman2004-08-111-2/+2
|
* ENH: initial fortran supportBill Hoffman2004-08-061-3/+40
|
* BUG#427: Generated makefiles need to have targets with canonical names for ↵Brad King2004-08-051-9/+0
| | | | each executable and library target in order for try-compiles to work correctly when specifying the target.
* BUG: CMAKE_TRY_COMPILE_CONFIGURATION should be obtained from the cmMakefile ↵Brad King2004-08-041-1/+1
| | | | instance for the listfile containing the TRY_COMPILE call, not the top level listfile.
* ENH: add support for VCExpress 2005Bill Hoffman2004-07-051-0/+13
|
* ERR: Fix visual studio installAndy Cedilnik2004-06-281-0/+4
|
* ENH: Add check for infinite loops. Make sure that files written using ↵Andy Cedilnik2004-04-181-0/+1
| | | | WRITE_FILE and FILE WRITE are not used as input files. Fixes Bug #678 - WRITE_FILE and FILE(WRITE...) lead to infinite loops