| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| | |
0378396 UseSWIG.cmake did not support multiple modules and parallel builds
|
| |
| |
| |
| |
| |
| | |
This commit fixes BUG: 0011782. UseSWIG would be using the same variable
to declare module information. The problem would only be noticed in parallel builds
Fix this variable declaration by properly resetting it.
|
|\ \
| | |
| | |
| | |
| | | |
5f76833 Add support for Java on HP
|
| |/
| |
| |
| |
| | |
This commit fixes Bug: 0011676 by adding support for version
numbering of JRE used on HP: 1.6.0.06-jinteg_20_jan_2010_05_50-b00
|
|\ \
| | |
| | |
| | |
| | | |
c088536 UseSWIG.cmake does not expand $(OutDir)
|
| |/
| |
| |
| |
| |
| | |
This commit fixes BUG: 0011215 by properly expanding $(OutDir)
Instead of creating the output directory using file(MAKE_DIRECTORY)
we use cmake -E to create the directory at execution time
|
|\ \
| | |
| | |
| | |
| | | |
a59d198 Add support for java on fedora
|
| |/
| |
| |
| |
| | |
This commit fixes BUG: 0011183 by adding new paths used on fedora,
specifically: /usr/lib/jvm/java-1.6.0-openjdk-1.6.0.0
|
|\ \
| | |
| | |
| | |
| | | |
4f35488 Add support for FindJava on HP-UX and alpha
|
| |/
| |
| |
| |
| | |
This commit fixes BUG: 0010242. It now properly inspect specific directory
on hp-ux and alpha implementation of the JRE
|
|\ \
| | |
| | |
| | |
| | | |
1088b02 Add a new function SWIG_GET_WRAPPER_DEPENDENCIES to UseSWIG.cmake
|
| |/
| |
| |
| |
| |
| |
| | |
This commit fixes BUG: 0004147 it directly uses swig executable
to compute a list of dependencies directly from the .i files
to make sure to rebuild the swig module any of its direct dep.
is touched
|
|\ \
| | |
| | |
| | |
| | | |
55b7c87 Add support for new swig 2.0 application
|
| |/
| |
| |
| |
| | |
This commit fixes BUG: 0011843. It now properly discover if swig2.0
is in the PATH
|
|\ \
| | |
| | |
| | |
| | | |
d468a2c XL: Avoid copying archives into shared libraries that link them
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The XL toolchain supports shared object files stored in archives. Since
CMake lists libraries on link lines by full path it is common for a
shared library link line to contain the path to an archive file.
When linking a shared library the compiler front-end by default runs
CreateExportList to construct the list of symbols to be exported.
Unfortunately it passes all files found on the command line to the tool
so archive and library files get processed along with the object files.
The tool returns a list of all symbols in all objects, archives, and
libraries on the command line. This causes the linker to copy every
object file out of every archive into the shared library whether they
are dependencies of the original object files or not.
Work around this problem by running CreateExportList ourselves with just
the original object files intended for inclusion in the shared library.
Then pass the list it produces on the link line to prevent the compiler
front-end from constructing its own. This tells the linker to export
only the symbols provided by the original source files of the shared
library.
|
|\ \ \
| |/ /
| | |
| | |
| | |
| | | |
2f3eee7 XL: Consolidate compiler flag information
3a40c7f XL: Set C++ and Fortran flags consistently with C
|
| | |
| | |
| | |
| | |
| | |
| | | |
Factor duplicate information out of Compiler/XL-<lang>.cmake modules
into a macro in a new Compiler/XL.cmake module. Invoke it from the
per-language files to produce the original settings.
|
| | |
| | |
| | |
| | |
| | |
| | | |
Since commit e1729238 (Add initial XL C compiler flags for safer builds,
2009-09-30) CMake sets the initial XL C flags to include "-qthreaded"
and "-qhalt=e". Do the same for C++ and Fortran with this toolchain.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
c519bb2 XCode: Also qoute [] as needed to set build-configurations.
|
| |/ / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
0dafc0a FindZLIB: print library instead of include directory
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Before:
-- Found ZLIB: /usr/include (found version "1.2.3")
After:
-- Found ZLIB: /usr/lib/libz.so (found version "1.2.3")
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
9fc7ea4 find_package: Forward component list for recursive calls in modules
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Some find modules call find_package recursively to locate a package
configuration file for the package instead of searching for individual
pieces. Commit 79e9b755 (Help recursive find_package calls in modules,
2008-10-03) taught find_package to forward the version number and EXACT
arguments through the recursive call automatically. Do the same for the
component list.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
e8558ef cmArchiveWrite: Clear xattr and acl from entries (#11958)
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
When reading archive entries from disk strip any xattr and acl entry
headers that may have been loaded from the filesystem (e.g. selinux).
These fields are only useful for backup tools and not for packaging and
distribution of software. Furthermore, the GNU tar 1.15.1 on at least
one Linux distribution treats unknown entry headers as an error rather
than a warning. Therefore avoiding such fields is necessary for archive
portability.
Suggested-by: Tim Kientzle <tim@kientzle.com>
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|/ / |
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | | |
dd04608 Fix KWStyle warnings
2973c1f Add component support to DragNDrop generator.
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | |
| | | | |
9c43824 Fix KWStyle warnings
64a5e20 Combine component packaging methods into an enum.
|
| |/ / |
|
| | |
| | |
| | |
| | |
| | | |
Also allow generators to override the default packaging method.
Add a ONE_PER_GROUP option so that method can be specified by the user without relying on defaults.
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
9a6ff95 Fix for bug where VS2010 did not use .obj files as part of the build.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
For VS2010 if a precompiled .obj file was the output of a custom commad,
it was used as part of the build. If it was not, then VS did not
use it as part of the build. This commit updates the test to check
for this issue, and fixes the problem. This fixes bugs #0011891 and
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
6a38cab Don't skip the last builtin include dir for the Eclipse project file
4371147 Fix parsing include dirs and builtin macros for CXX-only projects
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The regex was slightly wrong, it excluded the last line, so e.g.
/usr/include/ didn't end up in the .cproject file.
Thanks to Shash Chatterjee for the patch.
Alex
|
| | | | |
| | | | |
| | | | |
| | | | | |
Alex
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
4bb7940 Split CPack.cmake in more manageable parts
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Put NSIS, Bundle and Component related MACROs in separate files.
This does not implies functional changes, concerning the way
CPack is used.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
3e32db7 cmCTestUploadCommand::CheckArgumentKeyword should return false if not FILES
6b6f309 Add the FILES keyword to ctest_upload command
28cdd0a Don't tar/gz ctest_upload() files
fbe4356 Change 'Files' tag to 'Upload' in Upload.xml
350546d Implement ctest_upload command
|
| | | | | | |
|
| | | | | | |
|