- Nov 21, 2019
-
-
Brad King authored
The Ninja generator's support for Fortran requires that source files be preprocessed explicitly first. However, the `xlf` compiler does not have a simple `-E` option or equivalent to do preprocessing. The only documented way to get preprocessed output is to use `-d` to leave it behind, but only at an inflexible location. Instead, create our own `cpp` wrapper script and substitute it for the real preprocessor using `-tF -B ...`. Teach the wrapper to map the `cpp` output to the location we need and then invoke the real `cpp` underneath. Fixes: #19450
-
-
1e68fb0c Xcode: Set source file type for Objective C/C++ Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4073
-
1e68fb0c Xcode: Set source file type for Objective C/C++ Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4073
-
b4ef7fba ccmake: Fix crash with cache entries almost the size of the window Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4062
-
e221039e FindMPI: Improve error when a component's language is not enabled Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !4071
-
8d47b97a UseJava: Use correct path separator in javadoc 1b27ac78 UseJava: Use list(APPEND) to simplify javadoc option construction c7a4b1a5 UseJava: Extract the path separator to module level Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3967
-
46de38da ExternalProject: replace LIST_SEPARATOR in initial cache files too Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4070
-
5e9ecaae load_cache: Allow READ_WITH_PREFIX mode in cmake scripts Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4042
-
51c69fe5 FileAPI: Add "multiConfig" parameter to index file Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Merge-request: !4072
-
-
84408ff4 FindwxWidgets: Find wxQt debug libraries Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4069
-
84408ff4 FindwxWidgets: Find wxQt debug libraries Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4069
-
Kitware Robot authored
-
- Nov 20, 2019
-
-
For both classpath and sourcepath.
-
-
It is currently only defined within the add_jar function, but is needed inside other functions in this module.
-
Previously, if a CMake project requests a component for a language that is not enabled, it would simply give an error with the message Could NOT find MPI (missing: MPI_${LANG}_FOUND) which is not indicative that the language was not enabled. This change provides an error message indicating that it failed to find the particular MPI component because no compiler was available for the language and the language might need to be enabled for the project. Closes: #19996
-
Extend the change from commit fe54989f (FindwxWidgets: Add support for wxQt, 2019-11-12, v3.16.0-rc4~12^2~1) to also find debug-enabled libs.
-
Kyle Edwards authored
-
Brad King authored
Fixes: #19998
-
Ben Boeckel authored
-
Kitware Robot authored
-
- Nov 19, 2019
-
-
32c165d2 CTest: Consolidate '--repeat-* n' options as `--repeat *:n` Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4053
-
-
Sylvain Joubert authored
The previous code: if (curFieldLen < width) { ... strncpy(bar + curFieldLen + 2, help, width - curFieldLen - 2); was not correctly guarded against cache entries whose size were exactly 1 or 2 characters short of the window size. "if (curFieldLen - 2 < width)" would have prevented a copy of negative/max_int characters and a subsequent crash. The whole method was modernized with std::string instead of char*
-
ce99f5ee ccmake: Fix rendering on window resize Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4061
-
92c4c852 Xcode: Add custom working directory property Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4063
-
7d6639bf CodeLite: Do not pass -j argument with CPU count 0 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4067
-
7e86f71e cmOutputRequiredFilesCommand: Modernize memory management Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4055
-
5cf404d3 SDCC compiler: use sdar instead of sdcclib as librarian for recent versions Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4065
-
c5fb36a4 FindFLEX: Add policy CMP0098 to run flex in build tree Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !3981
-
Kitware Robot authored
-
- Nov 18, 2019
-
-
Brad King authored
-
Gregor Jasny authored
Closes: #19967
-
Johnny Jazeix authored
Fixes: #15054, #16727
-
Johnny Jazeix authored
Fixes: #19988
-
-
ff6c3361 Swift: support `-rpath` on Darwin Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4059
-