summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* BUG: cmCTest::GetConfigType should return the string by reference-to-const ↵Brad King2008-02-032-2/+2
| | | | so that callers may use .c_str() safely.
* COMP: Fix warning in SystemInformation.cxx about possibly incorrect ↵Brad King2008-02-031-2/+2
| | | | assignment in if condition.
* COMP: Fix unreachable code warning. Remove runtime test of constant ↵Brad King2008-02-031-5/+1
| | | | information.
* COMP: Remove inline keyword from forward declaration for VS9.Brad King2008-02-031-4/+4
|
* STYLE: Nightly Date StampBrad King2008-02-031-1/+1
|
* ENH: fix infinite loop from size_t changeBill Hoffman2008-02-021-1/+1
|
* STYLE: Nightly Date StampBrad King2008-02-021-1/+1
|
* ENH: really Bill, using Ken's checkout, fix output in ctest so clean output ↵Ken Martin2008-02-011-6/+39
| | | | in build and test is not lost, also display the command lines used
* BUG: Fixed typo resulting in confusing error message from ↵Brad King2008-02-011-1/+1
| | | | cmExportInstallFileGenerator.
* BUG: Remove InstallNameFixupPath from cmTarget and cmInstallTargetGenerator.Brad King2008-02-012-40/+22
| | | | | | | | | - Motivation: - It depended on the order of installation - It supported only a single destination for each target - It created directory portions of an install name without user request - Updated ExportImport test to install targets in an order that expoed this bug
* ENH: fix warningsBill Hoffman2008-02-011-2/+2
|
* ENH: Show version number in window title.Clinton Stimpson2008-02-012-2/+5
|
* ENH: fix more warningsBill Hoffman2008-02-011-1/+1
|
* ENH: fix more warningsBill Hoffman2008-02-011-2/+2
|
* ENH: fix more warningsBill Hoffman2008-02-011-2/+2
|
* ENH: fix more warningsBill Hoffman2008-02-011-2/+2
|
* ENH: fix some warnings and 64 bit build windowsBill Hoffman2008-02-011-18/+21
|
* ENH: fix win64 build and a warningBill Hoffman2008-02-011-4/+7
|
* ENH: Use translation file if it exists for the locale.Clinton Stimpson2008-02-014-29/+46
| | | | | | | Consolidate some strings. More responsive interrupting. Prompt user if they try to close during configure, and allow them to close.
* ENH: Pass dependent library search path to linker on some platforms.Brad King2008-02-0115-384/+695
| | | | | | | | | | | | | | | | - Move runtime path ordering out of cmComputeLinkInformation into its own class cmOrderRuntimeDirectories. - Create an instance of cmOrderRuntimeDirectories for runtime path ordering and another instance for dependent library path ordering. - Replace CMAKE_DEPENDENT_SHARED_LIBRARY_MODE with explicit CMAKE_LINK_DEPENDENT_LIBRARY_FILES boolean. - Create CMAKE_LINK_DEPENDENT_LIBRARY_DIRS boolean. - Create variables to specify -rpath-link flags: CMAKE_SHARED_LIBRARY_RPATH_LINK_<LANG>_FLAG CMAKE_EXECUTABLE_RPATH_LINK_<LANG>_FLAG - Enable -rpath-link flag on Linux and QNX. - Documentation and error message updates
* COMP: Fix shadowed local warning.Brad King2008-02-011-3/+3
|
* STYLE: Nightly Date StampBrad King2008-02-011-2/+2
|
* ENH: try to fix hp and vs 6, again...Bill Hoffman2008-02-011-6/+7
|
* STYLE: line lengthBill Hoffman2008-01-312-2/+4
|
* ENH: fixes for borlandBill Hoffman2008-01-311-4/+6
|
* BUG: minor fix for ctestKen Martin2008-01-311-1/+1
|
* ENH: remove extra junkBill Hoffman2008-01-311-1/+0
|
* ENH: Support linking to shared libs with dependent libsBrad King2008-01-319-82/+329
| | | | | | | | | - Split IMPORTED_LINK_LIBRARIES into two parts: IMPORTED_LINK_INTERFACE_LIBRARIES IMPORTED_LINK_DEPENDENT_LIBRARIES - Add CMAKE_DEPENDENT_SHARED_LIBRARY_MODE to select behavior - Set mode to LINK for Darwin (fixes universal binary problem) - Update ExportImport test to account for changes
* ENH: fix for qnx, I hope, and fix indent stuffBill Hoffman2008-01-311-20/+22
|
* ENH: fix build errors with asm stuff on mingw and hopefully win64Bill Hoffman2008-01-311-20/+29
|
* ENH: fix build for mingwBill Hoffman2008-01-311-20/+20
|
* ENH: split into implementation and interface class to clean up namespace ↵Bill Hoffman2008-01-312-288/+510
| | | | issues with #define stuff
* BUG: Need to install cstddef header.Brad King2008-01-311-0/+9
|
* ENH: remove a const castBill Hoffman2008-01-311-1/+1
|
* ENH: read in old file formats Dart as wellKen Martin2008-01-312-1/+17
|
* STYLE: Work-around std:: check since this is a platform test.Brad King2008-01-311-4/+4
|
* STYLE: Remove references to std:: inside KWSys, even in comments. This will ↵Brad King2008-01-313-7/+7
| | | | allow a commit check to be added.
* COMP: Replace kwsys_stl:: with kwsys_ios:: for streams access.Brad King2008-01-311-6/+6
|
* ENH: Add target property LINK_SEARCH_END_STATIC to help people building ↵Brad King2008-01-312-1/+21
| | | | static binaries on some platforms.
* BUG: Move decision to switch library paths found in implicit link ↵Brad King2008-01-314-86/+55
| | | | directories to use -l options from cmFindLibraryCommand to cmComputeLinkInformation. Existing projects may depend on find_library returning a full path. This slightly weakens cmComputeLinkInformation but is necessary for compatibility.
* COMP: Remove unused parameter.Brad King2008-01-312-8/+4
|
* STYLE: Nightly Date StampBrad King2008-01-311-1/+1
|
* ENH: remove constBill Hoffman2008-01-314-29/+29
|
* COMP: use kwsys_stl and not std::Bill Hoffman2008-01-312-36/+36
|
* BUG: Fixed previous commit in cmExportFileGenerator to separate libraries ↵Brad King2008-01-301-1/+4
| | | | correctly in the import link list.
* ENH: Implemented link-interface specification feature.Brad King2008-01-3010-44/+273
| | | | | | | | | | | | - Shared libs and executables with exports may now have explicit transitive link dependencies specified - Created LINK_INTERFACE_LIBRARIES and related properties - Exported targets get the interface libraries as their IMPORTED_LINK_LIBRARIES property. - The export() and install(EXPORT) commands now give an error when a linked target is not included since the user can change the interface libraries instead of adding the target.
* ENH: make sure global targets are in the right projectsBill Hoffman2008-01-301-24/+5
|
* ENH: fix for vs 70Bill Hoffman2008-01-301-2/+2
|
* BUG: cmComputeLinkDepends should not follow the dependencies of executables.Brad King2008-01-301-7/+10
|
* ENH: fix for bug 3218 dependant projects are written out automatically if ↵Bill Hoffman2008-01-309-524/+345
| | | | they are in the project. Also fix bug 5829, remove hard coded CMAKE_CONFIGURATION_TYPES from vs 7 generator