| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
Many places in our documentation refer to "Makefile Generators" or
"Visual Studio" generators as a group of generators. Give such
places a linkable document section to reference since they cannot
cross-reference the individual generators in the groups.
|
|\
| |
| |
| |
| | |
7fea2b77 FindCUDA: Use the static CUDA runtime library if available (#15482)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Beginning in CUDA 5.5 a static version of the cuda runtime library
became available. Since nvcc defaults to using this library over the
shared version, FindCUDA will also default to using this version. There
are many advantages to using the static version (most importantly to
avoid conflicts with multiple versions when building a CUDA based
library). Offer a CUDA_USE_STATIC_CUDA_RUNTIME option to control
this behavior.
|
|\ \
| | |
| | |
| | |
| | | |
82c51a8a liblzma: Disable XL compiler optimizations in one source to avoid crash
|
| | |
| | |
| | |
| | |
| | |
| | | |
Somehow optimizations of lzma_lzma_optimum_normal by the IBM XL C
compiler cause it to crash. Simply disable optimizations of this source
file with a pragma.
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
06f61c26 Do not treat DEFINITIONS as a built-in directory property
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add policy CMP0059 to cover this change. The property has been
deprecated since CMake 2.4 anyway.
This will help clean up cmMakefile -- the DefineFlagsOrig member should
not need to exist.
|
|\ \ \ \
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
f2e07a6d cmMakefile: Remove unused PreOrder member.
aafe2821 cmMakefile: Remove unused Prefix member.
1fcf590b cmMakefile: Remove unused SubDirectoryOrder member.
c3a60cc9 cmMakefile: Remove AddExtraDirectory method.
37897347 cmMakefile: Remove unused method.
d7539ced cmMakefile: Remove bogus comment.
|
| | | |
| | | |
| | | |
| | | | |
Remove references from dependendent API.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Unused since it was added in commit 1f42f521 (NEW: move from tools
and config to create CMake, 2000-08-29).
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The last use was removed in v2.4.0~2054 (ENH: add support for out
of source source, 2005-03-14)
|
| | | |
| | | |
| | | |
| | | | |
It has no effect.
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The last user was removed in commit v2.4.0~1516 (ENH: removed unused
files, 2005-06-20).
|
| | | | |
|
|\ \ \ \
| | |/ /
| |/| |
| | | |
| | | | |
af61d6cb liblzma: Use unaligned access only on Intel and PowerPC archs
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
a293dcb5 Tests: Fix CMake.ELF test with read-only source (#15489)
|
| | |/ /
| |/| |
| | | |
| | | |
| | | |
| | | |
| | | | |
When the cmake sources are all set to read-only (e.g. after importing
into perforce), the CMake.ELF test fails because the copy of the binary
is also read-only and cannot be modified. Fix this by copying the
binary without source permissions.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
77d466ec Help: Document conversion of PATH/FILEPATH cache values to absolute paths
91eb7363 Help: Rewrite 'set` command documentation
c6593511 Help: Add link target to cmake-language.7 variables section
|
| | | | |
| | | | |
| | | | |
| | | | | |
Suggested-by: Roger Leigh <rleigh@codelibre.net>
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Much of the information in the old set() command documentation is now
covered in the cmake-language(7) manual. Rewrite the documentation
with this in mind. Split up the signatures for each kind of variable
into different subsections.
|
| |/ / / |
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
078c7321 Xcode: Add file type for Metal shader files
|
| |/ / / |
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
e86f44b7 cmCPackDebGenerator: Cast file mode to proper type for %o formatter
|
| | |/
| |/| |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
b687d672 Tests: Fix RunCMake.CTestCommandLine expected output time matching
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When matching ctest command-line output, we must account for the
formatting of times that take 10 seconds or more. The values are
right-justified, so use " +" to match any amount of space before them.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | | |
93a3ec8b CPack: Fix make tool selection during preinstall (#15483)
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The CMAKE_MAKE_PROGRAM selected by CMake while configuring the project
should also be used to drive the "preinstall" target during packaging.
Teach CPack to use "cmake --build" instead of constructing the build
command line itself. The "cmake --build" command already knows how
to select the proper make tool.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
7b1cdb00 jsoncpp: Provide 'isfinite' implementation on older AIX and HP-UX
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
Newer AIX and HP-UX platforms provide 'isfinite' as a <math.h> macro.
Older versions do not, so add the definition if it is not provided.
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
44990732 Help: Add notes for topic 'makefile-DELETE_ON_ERROR'
4adf1dad Makefile: Tell GNU make to delete rule outputs on error (#15474)
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Add .DELETE_ON_ERROR to the "build.make" files that contain the actual
build rules that generate files. This tells GNU make to delete the
output of a rule if the recipe modifies the output but returns failure.
This is particularly useful for custom commands that use shell
redirection to produce a file.
Do not add .DELETE_ON_ERROR for Borland or Watcom make tools because
they may not tolerate it and would not honor it anyway. Other make
tools that do not understand .DELETE_ON_ERROR will not be hurt.
Suggested-by: Andrey Vihrov <andrey.vihrov@gmail.com>
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
3113d86d CTestCustom: Suppress OS X universal binary link arch warnings
|
| | |/ / / /
| |/| | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
0778016a Tests: Do not try to use invalid "ld -v" flag on Solaris
|
| | |_|/ / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | | |
Fix the CMakeCommands.target_link_libraries test to use "-V" instead of
"-v" on Solaris because the latter does not exist.
|
| |/ / / /
|/| | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
1570a4df Help: Add notes for topic 'UseSWIG-no-MAIN_DEPENDENCY'
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|/ / / /
|/| | | | |
| | | | | |
| | | | | |
| | | | | | |
68e13e98 Help: Add notes for topic 'cpack-rpm-basic-symlink-handling'
681f3a2f CPackRPM: Add basic symlink support (#15209)
|
| | | | | | |
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
RPM packages can contain symbolic links to relative paths - including
support for multiple relocation paths through generation of post install
relocation scripts. Add basic support with limitations described in
documentation.
|
|\ \ \ \ \
| | |/ / /
| |/| | |
| | | | |
| | | | | |
b372a99a UseSWIG: Do not use MAIN_DEPENDENCY on custom commands (#15480)
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add the dependency on the main swig input source file as a normal
DEPENDS option. We cannot use MAIN_DEPENDENCY because if there are
multiple target languages then multiple custom commands would want to
use the same MAIN_DEPENDENCY, but at most one custom command may specify
a given source file as its MAIN_DEPENDENCY. Exposed by a CMP0057
warning.
|
|\ \ \ \
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
c46125df Help: Refine COMPILE_OPTIONS property documentation
d51c1f09 Help: Fix xref typos in target_compile_options docs
|