Brad King
8640dc54d1
Merge topic 'ctest-delphi-coverage'
...
df720de2 Help: Add notes for topic 'ctest-delphi-coverage'
2014-11-04 15:09:39 -05:00
Brad King
092dfdd238
Merge topic 'cpack-rpm-component-descriptions'
...
cfb3a869 Help: Add notes for topic 'cpack-rpm-component-descriptions'
2014-11-04 15:09:37 -05:00
Brad King
f81af6f526
Merge topic 'cpack-rpm-pre-post-install'
...
6e927faf Help: Add notes for topic 'cpack-rpm-pre-post-install'
2014-11-04 15:09:35 -05:00
Brad King
66158b6753
Merge topic 'add_javascript_coverage_parser'
...
c236b160 Help: Add notes for topic 'add_javascript_coverage_parser'
2014-11-04 15:09:32 -05:00
Brad King
32b48579b6
Merge topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS'
...
56f4949c Help: Add notes for topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS'
2014-11-04 15:09:30 -05:00
Brad King
56f4949cbb
Help: Add notes for topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS'
2014-11-04 14:45:18 -05:00
Brad King
c236b16050
Help: Add notes for topic 'add_javascript_coverage_parser'
2014-11-04 14:43:14 -05:00
Brad King
6e927fafff
Help: Add notes for topic 'cpack-rpm-pre-post-install'
2014-11-04 14:41:55 -05:00
Brad King
cfb3a86950
Help: Add notes for topic 'cpack-rpm-component-descriptions'
2014-11-04 14:38:59 -05:00
Brad King
df720de234
Help: Add notes for topic 'ctest-delphi-coverage'
2014-11-04 13:03:22 -05:00
Kitware Robot
38be87caa4
CMake Nightly Date Stamp
2014-11-04 00:01:09 -05:00
Brad King
40bab8d17b
Merge branch 'release'
2014-11-03 09:36:40 -05:00
Brad King
a72ff020db
Merge branch 'fix-configure_file-COPYONLY' into release
2014-11-03 09:35:34 -05:00
Brad King
6aa2d47737
Merge topic 'fix-configure_file-COPYONLY'
...
1531df2b configure_file: Warn about unknown arguments
4abbb140 Qt4: Fix configure_file call to use COPYONLY, not COPY_ONLY
bd7ba8e2 KWSys: Fix configure_file call to use COPYONLY, not COPY_ONLY
e9282782 Help: Fix configure_file call to use COPYONLY, not COPY_ONLY
2014-11-03 09:08:35 -05:00
Kitware Robot
44853be608
CMake Nightly Date Stamp
2014-11-03 00:01:07 -05:00
Kitware Robot
5755d0059a
CMake Nightly Date Stamp
2014-11-02 00:01:07 -04:00
Kitware Robot
b25a200204
CMake Nightly Date Stamp
2014-11-01 00:01:14 -04:00
Brad King
1531df2b86
configure_file: Warn about unknown arguments
...
Extend the RunCMake.configure_file test with a case covering possible
common typos of the COPYONLY option.
Reported-by: Iosif Neitzke <iosif.neitzke@gmail.com>
2014-10-31 13:21:21 -04:00
Brad King
4abbb1400d
Qt4: Fix configure_file call to use COPYONLY, not COPY_ONLY
2014-10-31 13:20:19 -04:00
Brad King
bd7ba8e25f
KWSys: Fix configure_file call to use COPYONLY, not COPY_ONLY
2014-10-31 13:20:19 -04:00
Iosif Neitzke
e9282782e4
Help: Fix configure_file call to use COPYONLY, not COPY_ONLY
...
The configure_file signature has option 'COPYONLY' (no underscore).
Fix the example in 'cmake-packages.7.rst'.
2014-10-31 13:19:33 -04:00
Brad King
8b16e62c7a
Merge branch 'release'
2014-10-31 11:39:23 -04:00
Brad King
aa0f6e8309
Merge branch 'doc-add_library-typo' into release
2014-10-31 11:38:36 -04:00
Brad King
0b8db9ced1
Merge topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS'
...
609037f4 ExternalProject: Add unit tests for CMAKE_CACHE_DEFAULT_ARGS
98cdb658 ExternalProject: Add CMAKE_CACHE_DEFAULT_ARGS arguments
36cf8a1e Tests/Tutorial: Fix when USE_MYMATH is OFF
2014-10-31 11:35:07 -04:00
Brad King
f2805bd01b
Merge topic 'VERSION_no_sscanf'
...
ef09df64 cmSystemTools: reimplement verson comparison without sscanf()
667560c8 extend the testing for version comparison
2014-10-31 11:35:06 -04:00
Brad King
14a983cce6
Merge topic 'CheckStructHasMember-avoid-breakage-on-Wall'
...
8d6ba358 CheckStructHasMember: Avoid clang -Wall breakage (#15203 )
2014-10-31 11:35:04 -04:00
Brad King
81441f328b
Merge topic 'doc-add_library-typo'
...
38825396 Documentation: Fix minor typo thecommand -> the command
2014-10-31 11:35:02 -04:00
Brad King
163868b311
Merge topic 'xcode-inherit-warning-flags'
...
820e95d0 Xcode: Inherit global settings in per-target WARNING_CFLAGS (#15224 )
2014-10-31 11:34:58 -04:00
Daniele E. Domenichelli
609037f482
ExternalProject: Add unit tests for CMAKE_CACHE_DEFAULT_ARGS
2014-10-31 11:34:11 -04:00
Daniele E. Domenichelli
98cdb658e4
ExternalProject: Add CMAKE_CACHE_DEFAULT_ARGS arguments
...
This argument allows to set default arguments that are written in the
initial cache file, but that are not forced, and therefore allows the
user to change these values later (CMAKE_ARGS and CMAKE_CACHE_ARGS
always overwrite the values).
Also add some documentation to explain the differences between these 3
arguments.
Extend ExternalProjectLocal test to cover CMAKE_CACHE_DEFAULT_ARGS.
2014-10-31 11:34:04 -04:00
Daniele E. Domenichelli
36cf8a1eb9
Tests/Tutorial: Fix when USE_MYMATH is OFF
...
Unit tests for the square root of "-25" currently fail when USE_MYMATH
is disabled. The "mysqrt" method in the tutorials, returns "0" for a
negative value, while "sqrt" returns "NaN", and therefore the output is
not accepted by the test.
This patch checks if the number is negative and eventually returns "0"
before calling "sqrt" or "mysqrt" to fix this issue.
Printing a NaN might cause issues with the string catched by the tests
on some platform. Therefore assume that "0" is correct and "fix" the
USE_MYMATH=OFF version by checking if the number is negative and
eventually returning "0" before calling "sqrt" or "mysqrt".
2014-10-31 11:32:24 -04:00
Rolf Eike Beer
ef09df646a
cmSystemTools: reimplement verson comparison without sscanf()
...
This now has the advantage that it works with version strings with any number
of components.
2014-10-31 11:31:31 -04:00
Brad King
820e95d000
Xcode: Inherit global settings in per-target WARNING_CFLAGS ( #15224 )
...
Allow projects to use CMAKE_CODE_ATTRIBUTE_WARNING_CFLAGS to add their
own warning flags and have them used by the targets.
2014-10-31 11:29:53 -04:00
Nils Gladitz
38825396f9
Documentation: Fix minor typo thecommand -> the command
2014-10-31 11:27:50 -04:00
Kitware Robot
f274597abb
CMake Nightly Date Stamp
2014-10-31 00:01:08 -04:00
Peter Wu
8d6ba35827
CheckStructHasMember: Avoid clang -Wall breakage ( #15203 )
...
With CMAKE_C_COMPILER=clang and CMAKE_C_FLAGS='-Wall -Werror', this test
breaks with -Werror,-Wuninitialized. Fix this by getting rid of the
temporary variable.
2014-10-30 14:16:06 -04:00
Brad King
f2746f2ebe
Merge topic 'dev/alternate-generator-binaries'
...
f04e0a2b ninja: Find alternate Ninja-compatible binaries
2014-10-30 14:11:59 -04:00
Brad King
5e27e6f896
Merge topic 'doc-add_compile_options'
...
352cbb6e Help: Reference add_compile_options from add_definitions (#15225 )
a9f8c50a Help: Clarify add_compile_options documentation (#15225 )
2014-10-30 14:11:57 -04:00
Brad King
b233a09f6e
Merge topic 'unix-icon-install'
...
fb13502f QtDialog: install the 128x128 icon
fcb4541a QtDialog: don't install desktop file bits on Apple
2014-10-30 14:11:56 -04:00
Brad King
927b59403f
Merge topic 'doc-fix-html-favicon'
...
ca83c39c Utilities/Sphinx: Fix html_favicon configuration
2014-10-30 14:11:53 -04:00
Brad King
6e1e7dd014
Merge topic 'wince-tests'
...
5bd29b88 Tests: Run Tutorial steps 1-4 as tests for Windows CE
2014-10-30 14:11:51 -04:00
Brad King
89fd4b82d1
Merge topic 'cpack-bundle-codesign'
...
bd3fbf36 CPack: Add support for code signing of bundles on MacOS
2014-10-30 14:11:50 -04:00
Brad King
2e953c7657
Merge topic 'fix--D-command-line-parsing'
...
aee7e4a0 cmCacheManager: parse -D flags more strictly
368e8de4 Tests: test -D parsing on the command line
2014-10-30 14:11:48 -04:00
Kitware Robot
5c5c1e3c7d
CMake Nightly Date Stamp
2014-10-30 00:01:08 -04:00
Rolf Eike Beer
667560c88a
extend the testing for version comparison
...
This now checks also the negative outcome of the comparision operation, and
adds a bunch more different cases.
2014-10-29 21:28:33 +01:00
Brad King
8f01867340
Merge branch 'doc-add_compile_options' into release
2014-10-29 15:24:03 -04:00
Brad King
1e48ea7ab8
Merge branch 'FindCurses-include-CheckLibraryExists' into release
2014-10-29 15:23:57 -04:00
Brad King
352cbb6e36
Help: Reference add_compile_options from add_definitions ( #15225 )
...
When we explain in add_definitions documentation that it is intended
only for preprocessor definitions, link to add_compile_options for
adding other flags. Also explicitly mention that the order of
add_definitions calls with respect to target creation does not matter.
This differs from the behavior now explicitly stated in the
documentation of add_compile_options.
2014-10-29 15:23:31 -04:00
Ben Boeckel
f04e0a2b17
ninja: Find alternate Ninja-compatible binaries
...
On Red Hat distros, Ninja is /usr/bin/ninja-build because /usr/bin/ninja
is an IRC bot.
2014-10-29 13:03:43 -04:00
Ben Boeckel
fb13502fca
QtDialog: install the 128x128 icon
...
Also only install the icons to the icons directory.
2014-10-29 11:47:29 -04:00