summaryrefslogtreecommitdiffstats
path: root/Source/cmDSPWriter.cxx
Commit message (Collapse)AuthorAgeFilesLines
* ENH: Add library dependency analysis.Amitha Perera2002-05-011-2/+2
|
* ENH: major change, the cmMakefile now contains a master list of cmSourceFile ↵Bill Hoffman2002-03-291-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 spacesBill Hoffman2002-03-141-5/+4
|
* ENH: closer to working with spaces in the pathKen Martin2002-03-131-36/+61
|
* ENH: add file specific compile flagsBill Hoffman2002-03-041-9/+35
|
* ENH: big change in the path handling, one function CreateOutputPath is used ↵Bill Hoffman2002-02-221-21/+25
| | | | to escape spaces and convert to the native path type
* ENH:Updated copyrightWill Schroeder2002-01-211-30/+6
|
* ENH: only output each link path onceBill Hoffman2002-01-171-37/+56
|
* BUG: allow header files to be added to the dsp fileBill Hoffman2002-01-171-8/+5
|
* ENH: do not depend on the .dsp file but rather depend on .dsp.cmake and if ↵Bill Hoffman2002-01-151-6/+32
| | | | the .dsp actually changes, then write it, so clean and rebuild will not cause many reloads
* BUG: need spaces around linker optionsBill Hoffman2002-01-081-0/+2
|
* ENH: add CMAKE_EXTRA_LINK_FLAGS to dsp generatorBill Hoffman2002-01-081-2/+9
|
* ENH: allow custom commands for files that msdev knows aboutBill Hoffman2001-12-171-0/+1
|
* fix warning for Borland buildSebastien Barre2001-11-301-1/+1
|
* remove unused includeBerk Geveci2001-11-271-1/+0
|
* NMake with spaces in directoriesBill Hoffman2001-11-211-1/+1
|
* BUG: fix for spaces in path to CMakeList.txt fileBerk Geveci2001-11-201-0/+1
|
* minor fixKen Martin2001-11-121-1/+1
|
* support for custom targets on exe and libKen Martin2001-11-091-43/+109
|
* switched string::compare to strncmpPhil Pritchett2001-11-051-1/+1
|
* allow more than one external MS projectPhil Pritchett2001-11-021-1/+1
|
* ENH: IntDir to INTDIRBill Hoffman2001-11-011-6/+6
|
* INCLUDE_EXTERNAL_MSPROJECT commandPhil Pritchett2001-10-311-1/+4
|
* fix error in cygwinBill Hoffman2001-09-141-1/+2
|
* include fixesKen Martin2001-09-111-1/+13
|
* fix for include pathsKen Martin2001-09-111-1/+1
|
* various windows fixesKen Martin2001-09-101-0/+1
|
* ENH: separate command from its arguments in the custom command. This allows ↵Bill Hoffman2001-09-041-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 Barre2001-09-011-2/+7
|
* BUG: put spaces in /I pathsBill Hoffman2001-08-281-1/+1
|
* better network build supportKen Martin2001-08-281-51/+27
|
* support for network path link librariesKen Martin2001-08-271-3/+19
|
* ENH: do not put a rule in to rebuild the ALL_BUILD.dsp file, as it is not ↵Ken Martin2001-08-221-0/+4
| | | | possible...
* OUTDIR->IntDirBerk Geveci2001-08-221-2/+2
|
* ENH: big change, only allow commands access to the cache via the cmMakefile ↵Bill Hoffman2001-08-081-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 King2001-07-311-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 King2001-07-301-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 Scott2001-07-301-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 King2001-07-241-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 Scott2001-07-031-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 King2001-07-021-9/+8
|
* BUG: Check for building shared libraries should read from makefile's ↵Brad King2001-06-271-1/+1
| | | | setting, not directly from the cache.
* ENH: boot strap mfc gui and support for MFCBill Hoffman2001-06-201-0/+7
|
* BUG: Removed generation of stray # Begin Custom Build line.Brad King2001-06-081-1/+0
|
* adding a "Release with debugging Info" build to CMake for NTIan Scott2001-06-071-0/+4
|
* ENH: rename DSWMakefile and DSPMakefile to DSWWriter and DSPWriterBill Hoffman2001-06-061-13/+13
|
* BUG: fix EXE and LIB path problemsBill Hoffman2001-06-051-1/+41
|
* fix for network includ pathsKen Martin2001-06-011-1/+11
|
* ENH: create CMAKE_CXX_FLAGS_[Buildtype] flagsBill Hoffman2001-05-231-0/+18
|
* ENH: Added INSTALL target to switch in OutputDSPFile. Also added a default ↵Brad King2001-05-231-0/+5
| | | | that prints out an error message so that anyone who adds a target doesn't forget to update the switch.