summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'cmake-server-pipe-mode-fix' into releaseBrad King2016-10-181-6/+5
|\
| * server-mode: Fix named pipe modeTobias Hunger2016-10-181-6/+5
| | | | | | | | | | | | | | | | Do not treat a pointer itself as a `uv_stream_t`, but instead the pointed-to `uv_pipe_t`. It is unclear how this ever worked before in local testing. While at it, remove duplicate setup code and improve an error message.
* | Merge branch 'ninja-framework-POST_BUILD' into releaseBrad King2016-10-131-2/+4
|\ \
| * | Ninja: Fix POST_BUILD commands on macOS FrameworksBrad King2016-10-131-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The condition added by commit v2.8.12~179^2 (OS X: Fix regression handling frameworks for Ninja, 2013-07-16) for excluding use of versioning symlinks on macOS Frameworks must match that used for POST_BUILD selection. Otherwise we place the POST_BUILD commands after a symlink step that is never added. Closes: #16363
* | | Merge branch 'backport-LINK_WHAT_YOU_USE-allow-OFF' into releaseBrad King2016-10-133-6/+6
|\ \ \
| * | | Honor LINK_WHAT_YOU_USE when set to OFFJamie Snape2016-10-133-6/+6
| |/ / | | | | | | | | | | | | | | | Explicitly setting variable CMAKE_LINK_WHAT_YOU_USE or property LINK_WHAT_YOU_USE to OFF should not cause LWYU to run. Fix the property lookup to use GetPropertyAsBool.
* | | Merge branch 'ninja-rc-regression' into releaseBrad King2016-10-131-1/+1
|\ \ \
| * | | Ninja: Fix RC language depfile generation with cmcldepsBen Boeckel2016-10-131-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit v3.7.0-rc1~275^2 (Ninja: Use full path for all source files, 2016-08-05), the source path was changed to use an absolute path. Inside of `cmcldeps` for `.rc` file compilation, it uses a separate argument for the path to the source file. This ended up causing `cmcldeps` to transform the following call: cmcldeps.exe RC source.rc ... C:/full/path/to/source.rc into: ... C:/full/path/to//Tc source.rc which is invalid. Update the source filename to use the full path to the source file so that the path is replaced properly.
* | | Merge branch 'cmake-gui-fix-extra-generator-names' into releaseBrad King2016-10-111-1/+1
|\ \ \
| * | | cmake-gui: Fix "extra" generator entries in drop-down listBrad King2016-10-111-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Refactoring in commit v3.7.0-rc1~291^2~1 (Refactor extra generator registration to use factories, 2016-07-20) accidentally switched the order of the "extra - base" generator names to "base - extra". Switch it back. While this could affect all callers of the `GetRegisteredGenerators` method, only cmake-gui actually used this particular field. Closes: #16359
* | | Merge branch 'vs15-separate-flag-table' into releaseBrad King2016-10-103-3/+247
|\ \ \
| * | | VS: Split flag table between v140 and v141 toolsetsBrad King2016-10-103-3/+247
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In commit v3.7.0-rc1~156^2~1 (VS: Update v140 flag tables from VS 15 MSBuild files, 2016-09-02) we extended the v140 flag table with values from the v141 toolset that comes with VS 15. However, the v140 toolset that comes with VS 14 does not have all of these entries and so the flags just need to be passed without special mapping. In order to support both toolsets, split our CL flag table into separate copies for each version and switch off the toolset name. Closes: #16352
* | | Merge branch 'update-kwsys' into releaseBrad King2016-10-081-11/+9
|\ \ \
| * | | Merge branch 'upstream-KWSys' into update-kwsysBrad King2016-10-081-11/+9
| |/ / | | | | | | | | | | | | * upstream-KWSys: KWSys 2016-10-07 (dfe9b386)
* | | Merge branch 'android-export-has-cpp' into releaseBrad King2016-10-071-0/+12
|\ \ \
| * | | Android: Record use of C++ by static libs in exported Android.mk filesBrad King2016-10-071-0/+12
| |/ / | | | | | | | | | | | | | | | | | | | | | When a `PREBUILT_STATIC_LIBRARY` uses C++ in its sources then the `.a` file will have a link-time dependency on the C++ runtime libraries. Android NDK r14 will add a way to give this information to the NDK build system by adding a `LOCAL_HAS_CPP` setting to the `Android.mk` file. Add this for exported static libraries that use C++.
* | | Merge branch 'codelite-global-setting' into releaseBrad King2016-10-073-3/+24
|\ \ \
| * | | Codelite: Consume the CMAKE_CODELITE_USE_TARGETS setting globallyStephen Kelly2016-10-071-3/+1
| | | |
| * | | cmGlobalGenerator: Add API to get settings from top-level cmMakefileStephen Kelly2016-10-062-0/+23
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | At generate-time, definitions are sometimes read from a nearby cmMakefile, making the value directory-specific because they are read once per directory. Often however, the intention is more often to create a 'global' setting, such that the user writes for example: set(CMAKE_IMPORT_LIBRARY_SUFFIX something) once at the top level of their project. Many of these are also set by internal platform files, such as CMAKE_EXTRA_LINK_EXTENSIONS. The set() definitions are not really suitable for 'global' settings because they can be different for each directory, and code consuming the settings must assume they are different for each directory, and read it freshly each time with new allocations. CMake has other variable types which are global in scope, such as global properties, and cache variables. These are less convenient to populate for users, so establish a convention and API using the value as it is at the end of the top-level CMakeLists file.
* | | Merge branch 'fix-VS-resources-pri-path' into releaseBrad King2016-10-051-2/+4
|\ \ \
| * | | VS: Use absolute target-specific directory for `resources.pri`Roman Wüger2016-10-051-2/+4
| |/ / | | | | | | | | | | | | | | | | | | | | | The change in commit v3.7.0-rc1~219^2 (VS: Use target-specific directory for `resources.pri`, 2016-08-25) incorrectly specifies a relative path for the `ProjectPriFullPath` value. Fix it to use an absolute path. Issue: #16106
* | | Merge branch 'qtifw-https-cmake.org' into releaseBrad King2016-10-041-1/+1
|\ \ \ | |_|/ |/| |
| * | QtIFW: Reference cmake.org via https in cmake.org.htmlBrad King2016-10-041-1/+1
| |/
* | Merge branch 'cmake-server-improve-shutdown' into releaseBrad King2016-10-043-53/+132
|\ \
| * | server-mode: Improve shutdown behaviorTobias Hunger2016-10-043-53/+132
| |/ | | | | | | | | | | Add a signal handler to trigger shutdown and be more paranoid about libuv doing things asynchronously. This should fix test cases not shutting down properly.
* | CMake 3.7.0-rc1 version updateBrad King2016-10-031-3/+3
|/
* Merge topic 'cmake-server-teardown-file-monitor'Brad King2016-10-031-0/+1
|\ | | | | | | | | 1b43f9d1 cmake-server: Stop the file monitor on client disconnect
| * cmake-server: Stop the file monitor on client disconnectBrad King2016-09-301-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | When the client disconnects we need to remove all events from our loop. Prior to the introduction of the file monitor we only needed to remove the client pipes. Now we need to remove the file monitor events too. Without this the event loop may continue to block on file monitor events. If one does eventually come in then the event handler may try to report it to the disconnected client and crash because our internal structures for writing to the client have been freed. This addresses a failure of the `Server` test on some machines.
* | CMake Nightly Date StampKitware Robot2016-10-031-1/+1
| |
* | CMake Nightly Date StampKitware Robot2016-10-021-1/+1
| |
* | Merge topic 'autogen-fix-cmake-error'Brad King2016-10-011-2/+2
|\ \ | | | | | | | | | | | | a189d019 QtAutogen: Use cmSystemTools::Error instead of std::cerr
| * | QtAutogen: Use cmSystemTools::Error instead of std::cerrSebastian Holtermann2016-09-301-2/+2
| | | | | | | | | | | | | | | We can use std::cerr only in the build-time tool, not during CMake generation.
* | | Merge topic 'autogen-empty-qrc'Brad King2016-10-011-34/+33
|\ \ \ | |/ / | | | | | | | | | | | | bcafc399 QtAutogen: Add test for empty qrc file 98b11f25 QtAutogen: Allow .qrc files that do not contain any file reference
| * | QtAutogen: Allow .qrc files that do not contain any file referenceSebastian Holtermann2016-09-301-34/+33
| |/
* | Merge topic 'aux_source_directory-sort'Brad King2016-10-011-4/+8
|\ \ | | | | | | | | | | | | 50b27de4 aux_source_directory: Sort results to make it deterministic
| * | aux_source_directory: Sort results to make it deterministicJunghyun Kim2016-09-301-4/+8
| | | | | | | | | | | | | | | | | | | | | The change in commit v3.6.0-rc1~54^2 (file: Sort GLOB results to make it deterministic, 2016-05-14) makes sense for `aux_source_directory` too. Signed-off-by: Junghyun Kim <jh0822.kim@samsung.com>
* | | CMake Nightly Date StampKitware Robot2016-10-011-1/+1
| |/ |/|
* | Merge topic 'cmake-server-filewatcher'Brad King2016-09-3010-1/+518
|\ \ | | | | | | | | | | | | | | | | | | 4e34f042 server-mode: Watch CMakeLists.txt files 26250002 server-mode: Report watched files to client 0d96e193 server-mode: Add infrastructure to watch the filesystem
| * | server-mode: Watch CMakeLists.txt filesTobias Hunger2016-09-293-0/+44
| | | | | | | | | | | | Watch CMakeLists.txt files (and similar) from the Server
| * | server-mode: Report watched files to clientTobias Hunger2016-09-293-0/+26
| | | | | | | | | | | | * Add a command to report watched files and directories to clients.
| * | server-mode: Add infrastructure to watch the filesystemTobias Hunger2016-09-299-1/+448
| |/ | | | | | | | | | | | | Enable the server to watch for filesystem changes. This patch includes * The infrastructure for the file watching * makes that infrastructure available to cmServerProtocols * Resets the filesystemwatchers on "configure"
* | Merge topic 'cmake-server-enable-more'Brad King2016-09-301-1/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 957e72c0 Utilities/Release: Use python 3 for server mode test on Linux binary 64934f20 Utilities/Release: Enable server mode in all binaries ec0bf638 bootstrap: Add options to enable/disable server mode explicitly 523f8ec8 server-mode: Add option to enable/disable test case explicitly 6b97a5ef server-mode: Add option to enable/disable the mode explicitly a8334961 server-mode: Rename variable CMake_{HAVE => ENABLE}_SERVER_MODE 97b6e17c server-mode: Enable from bootstrapped CMake build
| * | server-mode: Rename variable CMake_{HAVE => ENABLE}_SERVER_MODEBrad King2016-09-291-1/+1
| |/ | | | | | | The latter is a better name for making it a public-facing option.
* | Merge topic 'update-kwsys'Brad King2016-09-301-0/+4
|\ \ | | | | | | | | | | | | | | | 6fe45e98 Merge branch 'upstream-KWSys' into update-kwsys 0ab471ad KWSys 2016-09-29 (6cfcbede)
| * | Merge branch 'upstream-KWSys' into update-kwsysBrad King2016-09-291-0/+4
| |/ | | | | | | | | * upstream-KWSys: KWSys 2016-09-29 (6cfcbede)
* | CMake Nightly Date StampKitware Robot2016-09-301-1/+1
|/
* Merge topic 'cmake_parse_arguments-PARSE_ARGV-multi-value'Brad King2016-09-291-2/+23
|\ | | | | | | | | | | 66c70cd9 cmake_parse_arguments: Add additional unit tests 41291b20 cmake_parse_arguments: Fix PARSE_ARGV multi-value argument handling
| * cmake_parse_arguments: Fix PARSE_ARGV multi-value argument handlingMatthew Woehlke2016-09-281-2/+23
| | | | | | | | | | | | | | | | | | The `PARSE_ARGV` mode was recently added to help functions properly parse their arguments even when those arguments may be quoted and contain literal `;` in their values. Fix the implementation to encode `;`s in reported multi-value arguments and in `UNPARSED_ARGUMENTS` so that `;`s in the individual values are preserved in the lists. This allows clients to access all their argument values correctly.
* | Merge topic 'cmake-server-commands'Brad King2016-09-293-2/+583
|\ \ | | | | | | | | | | | | | | | | | | | | | 71a50587 server-mode: Add project data for unit tests 7b1e60f2 server-mode: Report CMakeCache entries 84553a6e server-mode: Add command to retrieve build system files ead71873 server-mode: Report information relevant for a codemodel
| * | server-mode: Report CMakeCache entriesTobias Hunger2016-09-283-0/+71
| | | | | | | | | | | | | | | With this it would be possible to implement something like cmake-gui using server-mode.