https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
c1f3df2 Add command 'file(LOCK ...)' 07 November 2014, 13:49:14 UTC
32ee0f3 Add class cmFileLockPool 07 November 2014, 13:43:54 UTC
8f9691b Add class cmFileLock 07 November 2014, 13:33:30 UTC
b235db7 Add class cmFileLockResult 07 November 2014, 13:25:51 UTC
c60a5f8 CMake Nightly Date Stamp 07 November 2014, 05:01:08 UTC
917da5d CMake Nightly Date Stamp 06 November 2014, 05:01:08 UTC
d5a373a CMake Nightly Date Stamp 05 November 2014, 05:01:08 UTC
f45cefd Merge branch 'release' 04 November 2014, 20:10:58 UTC
db3cfc3 Merge topic 'ExternalProject_independent-step-targets' 468fb734 Help: Add notes for topic 'ExternalProject_independent-step-targets' 67cfbf8e ExternalProject: Add unit tests f598f1aa ExternalProject: Add ExternalProject_Add_StepDependencies function 4ae133e0 ExternalProject: Add independent step targets 04 November 2014, 20:09:51 UTC
ac88ce2 Merge topic 'fix-missing-SIZE_MAX' 996f8229 liblzma: fix build on platforms with no SIZE_MAX defined. 04 November 2014, 20:09:49 UTC
eb505ef Merge topic 'FindIce-no-envvar-markup' 01fb3190 FindIce: Drop use of :envvar: Sphinx markup 04 November 2014, 20:09:47 UTC
190fdec Merge topic 'extra-generators-std-flags' eaf6f67f Code Blocks/Eclipse: Add -std= flag matching. 45a25d63 Code Blocks/Eclipse: Use non-default stdlib includes when specified. 04 November 2014, 20:09:45 UTC
5204329 Merge topic 'watcom-drop-symfile-option' 6b63942e Watcom: Drop symfile linker option 04 November 2014, 20:09:43 UTC
34c16c5 Merge topic 'update-kwsys' 5868b4e2 Merge branch 'upstream-kwsys' into update-kwsys 72b5b480 KWSys 2014-10-31 (88c8cc7f) 04 November 2014, 20:09:41 UTC
8640dc5 Merge topic 'ctest-delphi-coverage' df720de2 Help: Add notes for topic 'ctest-delphi-coverage' 04 November 2014, 20:09:39 UTC
092dfdd Merge topic 'cpack-rpm-component-descriptions' cfb3a869 Help: Add notes for topic 'cpack-rpm-component-descriptions' 04 November 2014, 20:09:37 UTC
f81af6f Merge topic 'cpack-rpm-pre-post-install' 6e927faf Help: Add notes for topic 'cpack-rpm-pre-post-install' 04 November 2014, 20:09:35 UTC
66158b6 Merge topic 'add_javascript_coverage_parser' c236b160 Help: Add notes for topic 'add_javascript_coverage_parser' 04 November 2014, 20:09:32 UTC
32b4857 Merge topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS' 56f4949c Help: Add notes for topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS' 04 November 2014, 20:09:30 UTC
56f4949 Help: Add notes for topic 'ExternalProject_CMAKE_CACHE_DEFAULT_ARGS' 04 November 2014, 19:45:18 UTC
c236b16 Help: Add notes for topic 'add_javascript_coverage_parser' 04 November 2014, 19:43:14 UTC
6e927fa Help: Add notes for topic 'cpack-rpm-pre-post-install' 04 November 2014, 19:41:55 UTC
cfb3a86 Help: Add notes for topic 'cpack-rpm-component-descriptions' 04 November 2014, 19:38:59 UTC
df720de Help: Add notes for topic 'ctest-delphi-coverage' 04 November 2014, 18:03:22 UTC
468fb73 Help: Add notes for topic 'ExternalProject_independent-step-targets' 04 November 2014, 17:56:14 UTC
38be87c CMake Nightly Date Stamp 04 November 2014, 05:01:09 UTC
996f822 liblzma: fix build on platforms with no SIZE_MAX defined. Some systems don't define a SIZE_MAX (older versions of HP-UX with aCC). The logic was already in place to account for this condition but SIZEOF_SIZE_T was not getting cmoputed at configure time to allow it to function. This computes sizeof(size_t) at configure time to allow the appropriate logic to work. It also changes SIZEOF_SIZE_T to SIZE_OF_SIZE_T for consistency. 03 November 2014, 19:37:12 UTC
4cc2d9b Merge branch 'FindIce-no-envvar-markup' into release 03 November 2014, 16:39:13 UTC
01fb319 FindIce: Drop use of :envvar: Sphinx markup We do not use it elsewhere yet, and do not want to index environment variables inconsistently. 03 November 2014, 15:53:47 UTC
67cfbf8 ExternalProject: Add unit tests 03 November 2014, 15:15:14 UTC
f598f1a ExternalProject: Add ExternalProject_Add_StepDependencies function The ExternalProject_Add_StepDependencies function add some dependencies for some external project step. The syntax is: ExternalProject_Add_Step_Dependencies(<name> <step> [target1 [target2 [...]]]) This function takes care to set both target and file level dependencies, and will ensure that parallel builds will not break. It should be used instead of add_dependencies() when adding a dependency for some of the step targets generated by ExternalProject. See also: http://thread.gmane.org/gmane.comp.programming.tools.cmake.devel/8680/focus=8926 03 November 2014, 15:15:14 UTC
4ae133e ExternalProject: Add independent step targets When adding step targets using ExternalProject_Add_StepTargets, the STEP_TARGETS argument or the EP_STEP_TARGETS property, ExternalProject sets all the dependencies for the main project to that target. Due to this, the update target cannot be used without downloading and building all the dependencies. In order to be able to add step targets that do not depend on other external projects, this patch adds: * An optional "NO_DEPENDS" argument to the ExternalProject_Add_StepTargets function. If this argument is set, then no dependencies are set for the target (file dependencies will still be set). * A new argument INDEPENDENT_STEP_TARGETS to the ExternalProject_Add function and a new directory property EP_INDEPENDENT_STEP_TARGETS that behave like STEP_TARGETS and EP_STEP_TARGETS, but cause the ExternalProject_Add_StepTargets to be called with the NO_DEPENDS argument. 03 November 2014, 15:15:14 UTC
40bab8d Merge branch 'release' 03 November 2014, 14:36:40 UTC
1ee161c Merge branch 'watcom-drop-symfile-option' into release 03 November 2014, 14:36:25 UTC
a72ff02 Merge branch 'fix-configure_file-COPYONLY' into release 03 November 2014, 14:35:34 UTC
eaf6f67 Code Blocks/Eclipse: Add -std= flag matching. When -std=x is specified in CMAKE_CXX_FLAGS this passes it along. 03 November 2014, 14:19:18 UTC
45a25d6 Code Blocks/Eclipse: Use non-default stdlib includes when specified. When -stdlib=x is specified in CMAKE_CXX_FLAGS this passes it along so that the correct include dirs are detected. 03 November 2014, 14:18:44 UTC
6aa2d47 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 03 November 2014, 14:08:35 UTC
6b63942 Watcom: Drop symfile linker option Cleanup of Windows-wcl386.cmake in commit v3.1.0-rc1~693^2 (Watcom: Cleanup Windows-wcl386 configuration, 2014-04-01) also introduced use of the 'symfile' link option but did not mention it in the commit message. There is no way to set the symbol file name of a target, so it is better to revert that change. It is easy to run 'wstrip *' if the symbols need to be stripped, but it is very difficult to get the right names for the .sym files to install with debug/rel_with_deb_info configurations. 03 November 2014, 13:46:48 UTC
44853be CMake Nightly Date Stamp 03 November 2014, 05:01:07 UTC
5755d00 CMake Nightly Date Stamp 02 November 2014, 04:01:07 UTC
b25a200 CMake Nightly Date Stamp 01 November 2014, 04:01:14 UTC
1531df2 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> 31 October 2014, 17:21:21 UTC
4abbb14 Qt4: Fix configure_file call to use COPYONLY, not COPY_ONLY 31 October 2014, 17:20:19 UTC
bd7ba8e KWSys: Fix configure_file call to use COPYONLY, not COPY_ONLY 31 October 2014, 17:20:19 UTC
e928278 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'. 31 October 2014, 17:19:33 UTC
5868b4e Merge branch 'upstream-kwsys' into update-kwsys 31 October 2014, 17:11:58 UTC
72b5b48 KWSys 2014-10-31 (88c8cc7f) Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ 88c8cc7f | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 29ffaf43..88c8cc7f Ben Boeckel (11): 9bf03363 Avoid if() quoted auto-dereference 771e0f22 DynamicLoader: use strings for arguments 86e20d68 Directory: remove extra define 6cc24510 SystemTools: use strings in environment functions bab5b1f2 SystemTools: add string overload for ReplaceString f3fb01cf SystemTools: use strings for path-related APIs 0dfbe56d SystemTools: use strings for making C identifiers 4690fc8d SystemTools: use strings in registry function 1b762a41 SystemTools: search for characters 4a060347 SystemInformation: use %ls for WCHAR* format specifiers d31f7b12 SystemTools: remove unused variable Brad King (1): 88c8cc7f Fix configure_file call to use COPYONLY, not COPY_ONLY Clinton Stimpson (1): 5bf91dda SystemTools: Use extended length path for copying files. Change-Id: I16e8e55dea1c171c04f9c7d04ae3c575531097c3 31 October 2014, 17:11:53 UTC
8b16e62 Merge branch 'release' 31 October 2014, 15:39:23 UTC
aa0f6e8 Merge branch 'doc-add_library-typo' into release 31 October 2014, 15:38:36 UTC
0b8db9c 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 31 October 2014, 15:35:07 UTC
f2805bd Merge topic 'VERSION_no_sscanf' ef09df64 cmSystemTools: reimplement verson comparison without sscanf() 667560c8 extend the testing for version comparison 31 October 2014, 15:35:06 UTC
14a983c Merge topic 'CheckStructHasMember-avoid-breakage-on-Wall' 8d6ba358 CheckStructHasMember: Avoid clang -Wall breakage (#15203) 31 October 2014, 15:35:04 UTC
81441f3 Merge topic 'doc-add_library-typo' 38825396 Documentation: Fix minor typo thecommand -> the command 31 October 2014, 15:35:02 UTC
163868b Merge topic 'xcode-inherit-warning-flags' 820e95d0 Xcode: Inherit global settings in per-target WARNING_CFLAGS (#15224) 31 October 2014, 15:34:58 UTC
609037f ExternalProject: Add unit tests for CMAKE_CACHE_DEFAULT_ARGS 31 October 2014, 15:34:11 UTC
98cdb65 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. 31 October 2014, 15:34:04 UTC
36cf8a1 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". 31 October 2014, 15:32:24 UTC
ef09df6 cmSystemTools: reimplement verson comparison without sscanf() This now has the advantage that it works with version strings with any number of components. 31 October 2014, 15:31:31 UTC
820e95d 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. 31 October 2014, 15:29:53 UTC
3882539 Documentation: Fix minor typo thecommand -> the command 31 October 2014, 15:27:50 UTC
f274597 CMake Nightly Date Stamp 31 October 2014, 04:01:08 UTC
8d6ba35 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. 30 October 2014, 18:16:06 UTC
f2746f2 Merge topic 'dev/alternate-generator-binaries' f04e0a2b ninja: Find alternate Ninja-compatible binaries 30 October 2014, 18:11:59 UTC
5e27e6f Merge topic 'doc-add_compile_options' 352cbb6e Help: Reference add_compile_options from add_definitions (#15225) a9f8c50a Help: Clarify add_compile_options documentation (#15225) 30 October 2014, 18:11:57 UTC
b233a09 Merge topic 'unix-icon-install' fb13502f QtDialog: install the 128x128 icon fcb4541a QtDialog: don't install desktop file bits on Apple 30 October 2014, 18:11:56 UTC
927b594 Merge topic 'doc-fix-html-favicon' ca83c39c Utilities/Sphinx: Fix html_favicon configuration 30 October 2014, 18:11:53 UTC
6e1e7dd Merge topic 'wince-tests' 5bd29b88 Tests: Run Tutorial steps 1-4 as tests for Windows CE 30 October 2014, 18:11:51 UTC
89fd4b8 Merge topic 'cpack-bundle-codesign' bd3fbf36 CPack: Add support for code signing of bundles on MacOS 30 October 2014, 18:11:50 UTC
2e953c7 Merge topic 'fix--D-command-line-parsing' aee7e4a0 cmCacheManager: parse -D flags more strictly 368e8de4 Tests: test -D parsing on the command line 30 October 2014, 18:11:48 UTC
5c5c1e3 CMake Nightly Date Stamp 30 October 2014, 04:01:08 UTC
667560c extend the testing for version comparison This now checks also the negative outcome of the comparision operation, and adds a bunch more different cases. 29 October 2014, 20:28:33 UTC
8f01867 Merge branch 'doc-add_compile_options' into release 29 October 2014, 19:24:03 UTC
1e48ea7 Merge branch 'FindCurses-include-CheckLibraryExists' into release 29 October 2014, 19:23:57 UTC
352cbb6 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. 29 October 2014, 19:23:31 UTC
f04e0a2 ninja: Find alternate Ninja-compatible binaries On Red Hat distros, Ninja is /usr/bin/ninja-build because /usr/bin/ninja is an IRC bot. 29 October 2014, 17:03:43 UTC
fb13502 QtDialog: install the 128x128 icon Also only install the icons to the icons directory. 29 October 2014, 15:47:29 UTC
ca83c39 Utilities/Sphinx: Fix html_favicon configuration The value must be either a full path or relative to the configuration directory, not relative to the 'static' directory. Use a full path. This avoids a warning: WARNING: favicon file 'cmake-favicon.ico' does not exist It worked before because all 'static' directory content is copied to the '_static' directory of html output anyway. 29 October 2014, 15:43:55 UTC
fcb4541 QtDialog: don't install desktop file bits on Apple Apple uses the dmg file which doesn't have .desktop support. 29 October 2014, 15:38:48 UTC
3942cf6 Merge topic 'ExternalProject-format-docs' d9c2c17b ExternalProject: Use explicit markup and definition lists in docs 98936ae3 ExternalProject: Convert docs to a bracket comment 29 October 2014, 15:31:13 UTC
e51cd32 Merge topic 'add_javascript_coverage_parser' 220e8134 CTest: Add Javascript coverage parser 29 October 2014, 15:31:10 UTC
0d6cdce Merge topic 'FindCurses-include-CheckLibraryExists' f11f9579 FindCurses: Include CheckLibraryExists before using it (#15220) 29 October 2014, 15:31:08 UTC
220e813 CTest: Add Javascript coverage parser Add a coverage parser for the Blanket.js library using the JSON output of the mocha.js test runner. Add a test for the new parser. 29 October 2014, 15:27:11 UTC
5bd29b8 Tests: Run Tutorial steps 1-4 as tests for Windows CE 29 October 2014, 13:39:20 UTC
a9f8c50 Help: Clarify add_compile_options documentation (#15225) Explain that it affects only targets added after the call. Fix the link to the COMPILE_OPTIONS directory propert documentation. Update the latter to explain that it is used to initialize the corresponding target property when a target is created. 29 October 2014, 13:18:56 UTC
8451f12 CMake Nightly Date Stamp 29 October 2014, 04:01:14 UTC
bd3fbf3 CPack: Add support for code signing of bundles on MacOS 28 October 2014, 18:20:05 UTC
d9c2c17 ExternalProject: Use explicit markup and definition lists in docs Convert ExternalProject module documentation to use explicit markup blocks for each command. Enumerate command options with definition lists instead of a literal block. This will allow more detail to be added later. Also fix the logic that parses options out of the documentation to be aware of the new layout. 28 October 2014, 16:46:17 UTC
98936ae ExternalProject: Convert docs to a bracket comment Use a bracket comment to hold the documentation instead of a block of line comments. This will make further updates easier. Also fix the logic that parses options out of the documentation to be aware of the new layout. 28 October 2014, 16:41:00 UTC
fddb3ca Merge topic 'compiler-include-encoding' 197a026c Fix failing StringFileTest when using unicode characters. 28 October 2014, 14:26:06 UTC
9eb385e Merge topic 'osx-gnu-fortran-deployment' 4fc3367f OS X: Detect deployment target flags from GNU Fortran compilers 28 October 2014, 14:26:04 UTC
78c0f51 Merge topic 'cpack-rpm-pre-post-install' 9ed546ff CPackRPM: Support PREUN and POSTUN requirements add4e50d CPackRPM: Support pre(post) install script requirements 28 October 2014, 14:26:02 UTC
c752f8f Merge topic 'find-boost-no-reroot' 43b8bfb2 FindBoost: fix find_library call when using "re-rooting" 28 October 2014, 14:26:00 UTC
f11f957 FindCurses: Include CheckLibraryExists before using it (#15220) Include the module at the top unconditionally so that all code paths can use it. 28 October 2014, 12:53:28 UTC
f1ac5ba CMake Nightly Date Stamp 28 October 2014, 04:01:10 UTC
197a026 Fix failing StringFileTest when using unicode characters. Some compilers (e.g. MSVC) can have a different encoding than the build tool. Changing the test to not use a full include path written to a header file by cmake. 27 October 2014, 23:55:15 UTC
9ed546f CPackRPM: Support PREUN and POSTUN requirements 27 October 2014, 16:36:20 UTC
add4e50 CPackRPM: Support pre(post) install script requirements 27 October 2014, 16:36:03 UTC
a2456e1 Merge topic 'autorcc-depends' 6e1c359f QtAutogen: Regenerate qrc files if their input changes (#15074) a2995318 QtAutogen: Expand rccfiles into a vector early in the autogen process. 506151af QtAutogen: Extract a GetRccExecutable method. 27 October 2014, 15:29:17 UTC
4fc3367 OS X: Detect deployment target flags from GNU Fortran compilers Reported-by: Bill Somerville <bill@classdesign.com> 27 October 2014, 12:40:55 UTC
back to top