- Oct 07, 2016
- Oct 06, 2016
-
-
Brad King authored
-
Brad King authored
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.
-
Stephen Kelly authored
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.
-
Brad King authored
-
Handle case when a component doesn't contain any debuginfo symbols.
-
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
-
- Oct 05, 2016
- Oct 04, 2016
- Oct 03, 2016
-
-
Brad King authored
-
Brad King authored
Release versions do not have the development topic section of the CMake Release Notes index page.
-
a997cac8 FindBoost: Add 1.62 and 1.62.0 as supported versions
-
07bb2724 Help: Clarify treatment of link flags in target_link_libraries
-
1b43f9d1 cmake-server: Stop the file monitor on client disconnect
-
-
Roger Leigh authored
-
Kitware Robot authored
- Oct 02, 2016
-
-
Kitware Robot authored
-
- Oct 01, 2016
-
-
Brad King authored
Add section headers similar to the 3.6 release notes and move each individual bullet into an appropriate section. Revise a few bullets.
-
Brad King authored
Move all development release notes into a new version-specific document: tail -q -n +3 Help/release/dev/* > Help/release/3.7.rst git rm -- Help/release/dev/* except the sample topic: git checkout HEAD -- Help/release/dev/0-sample-topic.rst Reference the new document from the release notes index document. Add a title and intro sentence to the new document by hand.
-
39c898a1 Help: Clarify that `cmake -A` option sets VS IDE target architecture
-
27c51865 Help: Add release note about compilers that no longer build CMake itself
-
a189d019 QtAutogen: Use cmSystemTools::Error instead of std::cerr
-