summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge topic 'CMP0065-LINK_FLAGS'Brad King2016-10-073-46/+67
|\ | | | | | | | | | | | | 0f1fedbd CMP0065: Put computed flags into LINK_FLAGS not LINK_LIBRARIES 7f1cd328 cmLocalGenerator: Rename local variable to be more appropriate 2597bcf8 cmLocalGenerator: Extract policy handling into a method
| * CMP0065: Put computed flags into LINK_FLAGS not LINK_LIBRARIESStephen Kelly2016-10-072-1/+14
| | | | | | | | | | | | | | These flags are redundant anyway in the NEW case of the policy, and could be merged with CMAKE_EXE_EXPORTS_${lang}_FLAG content for that case. That is deferred to the future, but now at least the similar code is located close to each other.
| * cmLocalGenerator: Rename local variable to be more appropriateStephen Kelly2016-10-061-4/+3
| |
| * cmLocalGenerator: Extract policy handling into a methodStephen Kelly2016-10-062-46/+55
| |
* | Merge topic 'codelite-global-setting'Brad King2016-10-074-5/+27
|\ \ | | | | | | | | | | | | | | | 80574a38 Codelite: Consume the CMAKE_CODELITE_USE_TARGETS setting globally f59e8779 cmGlobalGenerator: Add API to get settings from top-level cmMakefile
| * | Codelite: Consume the CMAKE_CODELITE_USE_TARGETS setting globallyStephen Kelly2016-10-072-5/+4
| | |
| * | 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 topic 'android-ndk-r13'Brad King2016-10-072-3/+9
|\ \ \ | | | | | | | | | | | | | | | | | | | | 0c3a0477 Android: Update libc++ include directories for NDK r13 ebef3632 Android: Suppress -Wattributes warnings in test case builds
| * | | Android: Update libc++ include directories for NDK r13Brad King2016-10-061-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | The Android NDK r13 moved the libc++ include directories. Closes: #16346
| * | | Android: Suppress -Wattributes warnings in test case buildsBrad King2016-10-061-2/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We use `-Werror` in the Android test builds to make sure there are no warnings that we care about (e.g. unused flags). However, the NDK r13 tools produce a warning about their own builtins: ``` <built-in>: In function 'float abs(float)': <built-in>: warning: conflicts with previous declaration here [-Wattributes] ``` Suppress this warning so that we can continue using `-Werror` but tolerate these warnings.
* | | Merge topic 'vs-15-preview-5'Brad King2016-10-072-2/+2
|\ \ \ | | | | | | | | | | | | | | | | 02b7d278 VS: Update VS 15 generator for Preview 5
| * | | VS: Update VS 15 generator for Preview 5Brad King2016-10-062-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | The `PlatformToolset` is now `v141` instead of `v140`. Closes: #16347
* | | | Merge topic 'mips-rld-map-rel'Brad King2016-10-073-184/+135
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 15762b72 elf: Remove GetDynamicEntryCount and ReadBytes methods cd4f573a cmSystemTools, elf: handle DT_MIPS_RLD_REL_MAP in RemoveRPath b8b1d151 cmSystemTools: rewrite RemoveRPath using DyanmicEntryList methods 72eb6a37 elf: add DynamicEntryList methods and rpath tag constants 66c4d082 elf: remove tag switch from ELF_Dyn ByteSwap function
| * | | | elf: Remove GetDynamicEntryCount and ReadBytes methodsJames Cowgill2016-10-072-47/+1
| | | | | | | | | | | | | | | | | | | | These are no longer used after the DynamicEntryList changes.
| * | | | cmSystemTools, elf: handle DT_MIPS_RLD_REL_MAP in RemoveRPathJames Cowgill2016-10-073-1/+31
| | | | |
| * | | | cmSystemTools: rewrite RemoveRPath using DyanmicEntryList methodsJames Cowgill2016-10-071-35/+17
| | | | |
| * | | | elf: add DynamicEntryList methods and rpath tag constantsJames Cowgill2016-10-062-0/+95
| | | | |
| * | | | elf: remove tag switch from ELF_Dyn ByteSwap functionJames Cowgill2016-10-061-115/+5
| | | | | | | | | | | | | | | | | | | | | | | | | sizeof(dyn.d_un.d_val) always equals sizeof(dyn.d_un.d_ptr) so every byte swap call in this function is identical.
* | | | | Merge topic 'cpack-rpm-debuginfo-fixes'Brad King2016-10-071-28/+40
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | f53b01ff CPack/RPM debuginfo package without binaries ca50c89e CPack/RPM debuginfo package objdump error suppression
| * | | | | CPack/RPM debuginfo package without binariesDomen Vrankar2016-10-061-27/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Handle case when a component doesn't contain any debuginfo symbols.
| * | | | | CPack/RPM debuginfo package objdump error suppressionDomen Vrankar2016-10-061-1/+2
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | objdump prints out error text if file is not an executable and that should be suppressed as we don't care about non executable files during that test
* | | | | Merge topic 'check-libuv-minimum-version'Brad King2016-10-071-2/+6
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 20e8dcf1 Set minimum version for LibUV to 1.0.0 845b98f4 Use find_package for JsonCpp and LibUV instead of include
| * | | | | Set minimum version for LibUV to 1.0.0Chuck Atkins2016-10-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Older versions of libuv did not have the uv_loop_close API. It first showed up in unstable releases ~ v0.11.20 but was not available in a stable release until v1.0
| * | | | | Use find_package for JsonCpp and LibUV instead of includeChuck Atkins2016-10-071-2/+6
| | |_|/ / | |/| | |
* | | | | CMake Nightly Date StampKitware Robot2016-10-071-1/+1
| |_|_|/ |/| | |
* | | | Merge topic 'FindMatlab-documentation'Brad King2016-10-062-9/+15
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | f2b88600 Help: Extend 3.7 release notes for FindMatlab 2f16ab87 FindMatlab: small documentation fixes
| * | | | Help: Extend 3.7 release notes for FindMatlabRaffi Enficiaud2016-10-051-1/+8
| | | | |
| * | | | FindMatlab: small documentation fixesRaffi Enficiaud2016-10-051-8/+7
| |/ / /
* | | | Merge topic 'FindMatlab-fix-simulink-cache'Brad King2016-10-061-0/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | e8893030 FindMatlab: remove SIMULINK path from cache when FindMatlab is reconfigured
| * | | | FindMatlab: remove SIMULINK path from cache when FindMatlab is reconfiguredRaffi Enficiaud2016-10-051-0/+1
| |/ / /
* | | | Merge topic 'cmake-server-improve-shutdown'Brad King2016-10-063-53/+132
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 68277e16 server-mode: Improve shutdown behavior
| * | | | 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.
* | | | Merge topic 'fix-VS-resources-pri-path'Brad King2016-10-061-2/+4
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 646d01da VS: Use absolute target-specific directory for `resources.pri`
| * | | | 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 topic 'no-define-cout-cerr'Brad King2016-10-067-39/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | 53858177 Do not define cout/cerr preprocessor symbols
| * | | | Do not define cout/cerr preprocessor symbolsBrad King2016-10-047-39/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Apply the change from commit bd3d0eaf (cmCTest: don't redefine cout and cerr, 2016-09-01) to the rest of ctest and cpack. These definitions are no longer needed because our conventions are well established.
* | | | | CMake Nightly Date StampKitware Robot2016-10-061-1/+1
| |_|_|/ |/| | |
* | | | CMake Nightly Date StampKitware Robot2016-10-051-1/+1
| | | |
* | | | Merge topic 'qtifw-https-cmake.org'Brad King2016-10-041-1/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | eb1a57d7 QtIFW: Reference cmake.org via https in cmake.org.html
| * | | | QtIFW: Reference cmake.org via https in cmake.org.htmlBrad King2016-10-041-1/+1
| | |/ / | |/| |
* | | | Merge topic 'utils-https-cmake.org'Brad King2016-10-042-2/+2
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | 730ba307 Utilities/Release: Update README to reference https URL 4376e47a Utilities/GitSetup: Fetch local hooks via https
| * | | | Utilities/Release: Update README to reference https URLBrad King2016-10-041-1/+1
| | | | |
| * | | | Utilities/GitSetup: Fetch local hooks via httpsBrad King2016-10-041-1/+1
|/ / / /
* | | | Merge topic 'no-tar.Z-binaries'Brad King2016-10-042-1/+2
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | 241858c5 Utilities/Release: Drop Linux .tar.Z binary 47873307 Utilities/Release: Drop macOS .tar.Z binary
| * | | Utilities/Release: Drop Linux .tar.Z binaryBrad King2016-10-041-0/+1
| | | | | | | | | | | | | | | | | | | | On Linux the gzip tool is universally available, so our `.tar.gz` is sufficient.
| * | | Utilities/Release: Drop macOS .tar.Z binaryBrad King2016-10-041-1/+1
|/ / / | | | | | | | | | | | | On macOS the gzip tool is universally available, so our `.tar.gz` is sufficient.
* | | Merge topic 'add-BUILD_RPATH'Brad King2016-10-049-3/+50
|\ \ \ | | | | | | | | | | | | | | | | dc6d8066 Add a BUILD_RPATH target property specifying build-tree RPATH entries
| * | | Add a BUILD_RPATH target property specifying build-tree RPATH entriesRuslan Baratov2016-10-039-3/+50
| | | | | | | | | | | | | | | | | | | | | | | | Users may need to add custom `RPATH` entries to be able to run binaries from their build tree without setting `LD_LIBRARY_PATH`. Provide a way to do this that does not affect the install-tree `RPATH`.
* | | | CMake Nightly Date StampKitware Robot2016-10-041-1/+1
|/ / /
* | | Merge branch 'release'Brad King2016-10-030-0/+0
|\ \ \ | | |/ | |/|