- Dec 16, 2011
-
-
Brad King authored
-
- Dec 15, 2011
-
-
Brad King authored
Fix a crash which occurs when SystemTools::GetPath attempts to process an empty environment variable. Author: Vladimir Panteleev <vladimir@thecybershadow.net>
-
Kitware Robot authored
-
- Dec 14, 2011
-
-
Kitware Robot authored
-
- Dec 13, 2011
-
-
Kitware Robot authored
-
- Dec 12, 2011
-
-
Kitware Robot authored
-
- Dec 11, 2011
-
-
Kitware Robot authored
-
- Dec 10, 2011
-
-
Kitware Robot authored
-
- Dec 09, 2011
-
-
Kitware Robot authored
-
- Dec 08, 2011
-
-
Kitware Robot authored
-
- Dec 07, 2011
-
-
2d119512 Merge branch 'master' into AutomocIncludedDotMocFileHandling 1eca18fd automoc: add documentation for CMAKE_AUTOMOC_STRICT_MODE bc278ceb automoc: fix line length 62e223e8 automoc: add variable CMAKE_AUTOMOC_STRICT_MODE, to enable strict parsing 40c51678 automoc: accept even more .moc files in non-strict mode c207f5d3 automoc: also accept other files when .moc is included in non-strict mode 9c0df72d automoc: add a StrictParseCppFile(), which is only qmake-compatible 174bf35f automoc: move the code for finding headers into separate function 8507eaed automoc: fix handling of included _p.moc files 7ada1720 automoc: some more linebreaks for the warnings for better readability 3b93e266 automoc: add extra check whether the header contains Q_PRIVATE_SLOT 47457159 Add a test case for the use of Q_PRIVATE_SLOT. bde4edb6 automoc: add special handling for including basename_p.moc, with test 74ab0f6a automoc: move some code from the big parsing loop into separate functions bc7560e6 automoc: add test for including a moc_abc_p.cpp file 30fd8e60 automoc: add test for including the moc file from another header ...
-
96f65ba6 cmTarget: Create helper method for versioned library names
-
aa36082a Miscellaneous fixes.
-
80e279d3 Make CUDA working directory unique for each target.
-
David Cole authored
Conflicts: Source/cmTarget.cxx
-
Kitware Robot authored
-
- Dec 06, 2011
-
-
c3c7a0cf Fixes for handling quotes in args and other places (Fix Bug 11726 and 12099).
-
83d4eead Add work around for CUDA in UNC paths.
-
aa595440 Reset dependency file list when a dependency disappeared.
-
ae62a1cd Test CMAKE_GNUtoMS option in ExportImport on MinGW and MSys afb00fef Add CMAKE_GNUtoMS option to convert GNU .dll.a to MS .lib 61e86298 Factor makefile generator link rule lookup into helper function a603250a Load platform files that need to know the ABI when possible ecd84147 Fortran: Detect pointer size in gfortran on MinGW
-
89309383 Added support for CUDA_PATH which is present in the CUDA toolkit 3.2 onward.
-
f529ddce Tests: ExternalProject: Remove unnecessary 'svn --version' call
-
f44f053a FindLAPACK: Fix linking to static LAPACK on Unix (#12477)
-
9b07c19f Fix path quoting in Qt4 macros
-
Alexander Neundorf authored
Alex
-
Brad King authored
Replace the duplicate logic for the realName and soName of versioned shared libraries with calls to a new ComputeVersionedName method.
-
Alexander Neundorf authored
Alex
-
Kitware Robot authored
-
- Dec 05, 2011
-
-
James Bigler authored
-
James Bigler authored
This allows you to have more than source file with the same name but different directories. The intermediate and configuration files are now in this same directory.
-
James Bigler authored
-
James Bigler authored
Nvcc can emit '/path' instead of '//path' which can cause a lot of grief later. We test to see if the file exists, if it doesn't then we see if the file exists with '/' prepended. Files that don't exist won't be added to the list.
-
James Bigler authored
Fix a long outstanding bug when a file in the dependency list wasn't found. This bug wouldn't reset the dependencies, so the makefile would still want the missing file when building. The work around was to configure twice, but this is no longer necessary.
-
Brad King authored
-
Brad King authored
Teach the Windows-GNU.cmake platform file to look for Visual Studio tools matching the target ABI. Add an extra step to the link command for shared libraries and executables that export symbols and on which a new GNUtoMS property is set (initialized by the CMAKE_GNUtoMS option). Tell the GNU linker to output a module definition (.def) file listing exported symbols in addition to the GNU-format import library (.dll.a). Pass the .def file to the MS "lib" tool to construct a MS-format DLL import library (.lib). Teach the install(TARGETS) command to install the MS import library next to the GNU one. Teach the install(EXPORT) and export() command to set the IMPORTED_IMPLIB property pointing at the import library to use the import library matching the tools in the importing project.
-
James Bigler authored
This required changing how the paths were used. I now use the PATH_SUFFIXES parameter instead of putting the whole path in the command.
-
Brad King authored
This provides a place in the makefile generators to adjust the link rules for both libraries and executables.
-
Brad King authored
Load platform files named in CMAKE_<lang>_ABI_FILES for each language once the ABI sizeof(void*) is known. During the first configuration this is after the test for working compiler and ABI detection checks. During later configurations the ABI information is immediately available because it has been saved in CMake<lang>Compiler.cmake.
-