Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | ENH: Add library dependency analysis. | Amitha Perera | 2002-05-01 | 1 | -2/+2 |
| | |||||
* | ENH: major change, the cmMakefile now contains a master list of cmSourceFile ↵ | Bill Hoffman | 2002-03-29 | 1 | -23/+29 |
| | | | | objects, the source lists reference the list via pointers, also you can now set properties on a file, like compile flags, abstract, etc. | ||||
* | BUG: fix for paths with spaces | Bill Hoffman | 2002-03-14 | 1 | -5/+4 |
| | |||||
* | ENH: closer to working with spaces in the path | Ken Martin | 2002-03-13 | 1 | -36/+61 |
| | |||||
* | ENH: add file specific compile flags | Bill Hoffman | 2002-03-04 | 1 | -9/+35 |
| | |||||
* | ENH: big change in the path handling, one function CreateOutputPath is used ↵ | Bill Hoffman | 2002-02-22 | 1 | -21/+25 |
| | | | | to escape spaces and convert to the native path type | ||||
* | ENH:Updated copyright | Will Schroeder | 2002-01-21 | 1 | -30/+6 |
| | |||||
* | ENH: only output each link path once | Bill Hoffman | 2002-01-17 | 1 | -37/+56 |
| | |||||
* | BUG: allow header files to be added to the dsp file | Bill Hoffman | 2002-01-17 | 1 | -8/+5 |
| | |||||
* | ENH: do not depend on the .dsp file but rather depend on .dsp.cmake and if ↵ | Bill Hoffman | 2002-01-15 | 1 | -6/+32 |
| | | | | the .dsp actually changes, then write it, so clean and rebuild will not cause many reloads | ||||
* | BUG: need spaces around linker options | Bill Hoffman | 2002-01-08 | 1 | -0/+2 |
| | |||||
* | ENH: add CMAKE_EXTRA_LINK_FLAGS to dsp generator | Bill Hoffman | 2002-01-08 | 1 | -2/+9 |
| | |||||
* | ENH: allow custom commands for files that msdev knows about | Bill Hoffman | 2001-12-17 | 1 | -0/+1 |
| | |||||
* | fix warning for Borland build | Sebastien Barre | 2001-11-30 | 1 | -1/+1 |
| | |||||
* | remove unused include | Berk Geveci | 2001-11-27 | 1 | -1/+0 |
| | |||||
* | NMake with spaces in directories | Bill Hoffman | 2001-11-21 | 1 | -1/+1 |
| | |||||
* | BUG: fix for spaces in path to CMakeList.txt file | Berk Geveci | 2001-11-20 | 1 | -0/+1 |
| | |||||
* | minor fix | Ken Martin | 2001-11-12 | 1 | -1/+1 |
| | |||||
* | support for custom targets on exe and lib | Ken Martin | 2001-11-09 | 1 | -43/+109 |
| | |||||
* | switched string::compare to strncmp | Phil Pritchett | 2001-11-05 | 1 | -1/+1 |
| | |||||
* | allow more than one external MS project | Phil Pritchett | 2001-11-02 | 1 | -1/+1 |
| | |||||
* | ENH: IntDir to INTDIR | Bill Hoffman | 2001-11-01 | 1 | -6/+6 |
| | |||||
* | INCLUDE_EXTERNAL_MSPROJECT command | Phil Pritchett | 2001-10-31 | 1 | -1/+4 |
| | |||||
* | fix error in cygwin | Bill Hoffman | 2001-09-14 | 1 | -1/+2 |
| | |||||
* | include fixes | Ken Martin | 2001-09-11 | 1 | -1/+13 |
| | |||||
* | fix for include paths | Ken Martin | 2001-09-11 | 1 | -1/+1 |
| | |||||
* | various windows fixes | Ken Martin | 2001-09-10 | 1 | -0/+1 |
| | |||||
* | ENH: separate command from its arguments in the custom command. This allows ↵ | Bill Hoffman | 2001-09-04 | 1 | -12/+15 |
| | | | | the generator on windows to change the slashes for just the command | ||||
* | Convert path format back to Windows slashes syntax. Mandatory for Win98 build. | Sebastien Barre | 2001-09-01 | 1 | -2/+7 |
| | |||||
* | BUG: put spaces in /I paths | Bill Hoffman | 2001-08-28 | 1 | -1/+1 |
| | |||||
* | better network build support | Ken Martin | 2001-08-28 | 1 | -51/+27 |
| | |||||
* | support for network path link libraries | Ken Martin | 2001-08-27 | 1 | -3/+19 |
| | |||||
* | ENH: do not put a rule in to rebuild the ALL_BUILD.dsp file, as it is not ↵ | Ken Martin | 2001-08-22 | 1 | -0/+4 |
| | | | | possible... | ||||
* | OUTDIR->IntDir | Berk Geveci | 2001-08-22 | 1 | -2/+2 |
| | |||||
* | ENH: big change, only allow commands access to the cache via the cmMakefile ↵ | Bill Hoffman | 2001-08-08 | 1 | -1/+1 |
| | | | | class and GetDefinition, also the cmMakefile is the only way for commands to add to the cache. Also, some changes to configure.in that check for for scoping | ||||
* | ENH: Added INSTALL_PROGRAMS command and corresponding support. This ↵ | Brad King | 2001-07-31 | 1 | -2/+5 |
| | | | | involved splitting cmTarget::INSTALL into INSTALL_FILES and INSTALL_PROGRAMS enum values. INSTALL_FILES no longer adds execute permission. The INSTALL_PROGRAMS commnad takes either a list of explicit names, or a regex. It will not expand source lists like the INSTALL_FILES command will. | ||||
* | BUG: Changed include and link directory paths in cmMakefile back to ↵ | Brad King | 2001-07-30 | 1 | -4/+4 |
| | | | | std::vector because there is an order dependency. Only cmMakefile::AddIncludeDirectory and cmMakefile::AddLinkDirectory should be called to add directories to the paths. They make sure the paths are unique as they are inserted. | ||||
* | Removed the Uniquification of the include and link directory list in FinalPass, | Ian Scott | 2001-07-30 | 1 | -4/+4 |
| | | | | | and achieved the same effect by makein m_LinkDirectores and m_IncludeDirectories a set rather than vector | ||||
* | BUG: Fixed dependency generation to work for when there are many, many ↵ | Brad King | 2001-07-24 | 1 | -10/+3 |
| | | | | dependencies. Output is now easier to ready anyway because each dependency is on its own line. | ||||
* | Renamed the ReleaseWithDebugInfo Build configuration to RelWithDebInfo, | Ian Scott | 2001-07-03 | 1 | -2/+2 |
| | | | | | because msdev does simple matching on build target, and specifying either Release or Debug builds would also build ReleaseWithDebugInfo | ||||
* | ENH: Added support for selection of static/shared build on a per-library basis. | Brad King | 2001-07-02 | 1 | -9/+8 |
| | |||||
* | BUG: Check for building shared libraries should read from makefile's ↵ | Brad King | 2001-06-27 | 1 | -1/+1 |
| | | | | setting, not directly from the cache. | ||||
* | ENH: boot strap mfc gui and support for MFC | Bill Hoffman | 2001-06-20 | 1 | -0/+7 |
| | |||||
* | BUG: Removed generation of stray # Begin Custom Build line. | Brad King | 2001-06-08 | 1 | -1/+0 |
| | |||||
* | adding a "Release with debugging Info" build to CMake for NT | Ian Scott | 2001-06-07 | 1 | -0/+4 |
| | |||||
* | ENH: rename DSWMakefile and DSPMakefile to DSWWriter and DSPWriter | Bill Hoffman | 2001-06-06 | 1 | -13/+13 |
| | |||||
* | BUG: fix EXE and LIB path problems | Bill Hoffman | 2001-06-05 | 1 | -1/+41 |
| | |||||
* | fix for network includ paths | Ken Martin | 2001-06-01 | 1 | -1/+11 |
| | |||||
* | ENH: create CMAKE_CXX_FLAGS_[Buildtype] flags | Bill Hoffman | 2001-05-23 | 1 | -0/+18 |
| | |||||
* | ENH: Added INSTALL target to switch in OutputDSPFile. Also added a default ↵ | Brad King | 2001-05-23 | 1 | -0/+5 |
| | | | | that prints out an error message so that anyone who adds a target doesn't forget to update the switch. |