https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
a2cf0db Merge topic 'try_compile-no-try_run-args' b976b844d2 try_compile: Don't accept try_run arguments 24c83bb35b try_compile: Fix quotes in reporting of unknown arguments Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7585 18 August 2022, 12:01:02 UTC
a336c83 Merge topic 'argparse-positional-tweak' f2ef60ca54 cmArgumentParser: Ignore positional after keyword Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7584 18 August 2022, 11:58:54 UTC
eee5616 Merge topic 'create_test_sourcelist-special-chars' f0802b2f50 create_test_sourcelist: Add support for more special characters in paths Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7587 18 August 2022, 11:57:48 UTC
b59615e CMake Nightly Date Stamp 18 August 2022, 04:01:11 UTC
b976b84 try_compile: Don't accept try_run arguments Modify cmCoreTryCompile to only recognize try_run arguments when actually parsing try_run. (The old behavior was to recognize try_run arguments for try_compile also and then complain.) This has a small chance that a try_run keyword will be consumed as part of a multi-valued keyword argument. However, this behavior is more consistent with other commands, as we don't normally treat keywords as universally reserved. Also, the code is noticeably simplified. 17 August 2022, 19:44:35 UTC
24c83bb try_compile: Fix quotes in reporting of unknown arguments In commit 6b427d8da9 (cmCoreTryCompile: Port to cmArgumentParser, 2022-08-01) we inadvertently dropped a matching quote during refactoring of reporting unknown arguments given to try_compile/try_run. Add the missing quote to match the old behavior and not have an imbalanced quote in the warning. 17 August 2022, 19:44:29 UTC
f0802b2 create_test_sourcelist: Add support for more special characters in paths Use `cmSystemTools::MakeCidentifier` to robustly create a valid function name to which the test path maps. Fixes: #23855 17 August 2022, 19:34:41 UTC
c88bf61 Merge topic 'fortran-compiler-list' 35759e2497 Fortran: cleanup compiler default search list Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7548 17 August 2022, 18:19:33 UTC
0677ca5 Merge branch 'release-3.24' 17 August 2022, 18:18:29 UTC
c3793b4 CMake 3.24.1 17 August 2022, 16:54:57 UTC
b6cfa38 Merge branch 'release-3.24' 17 August 2022, 16:51:07 UTC
1bb3594 Merge topic 'revert-ci-msvc-14.33' 3a7202bfc7 gitlab-ci: Revert Windows builds from MSVC 14.33 to MSVC 14.32 toolset Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7586 17 August 2022, 16:51:07 UTC
c1046c1 Merge topic 'revert-ci-msvc-14.33' into release-3.24 3a7202bfc7 gitlab-ci: Revert Windows builds from MSVC 14.33 to MSVC 14.32 toolset Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7586 17 August 2022, 16:51:06 UTC
3a7202b gitlab-ci: Revert Windows builds from MSVC 14.33 to MSVC 14.32 toolset Revert commit 6f17996edc (gitlab-ci: Update Windows builds to MSVC 14.33 toolset, 2022-08-15). A `cmake-gui` built with the MSVC 14.33 toolset emits spurious errors when configuring CMake projects, even when the adjacent `cmake` binary succeeds reliably. Revert to the known-working MSVC 14.32 toolset pending further investigation. Issue: #23859 17 August 2022, 16:43:07 UTC
f2ef60c cmArgumentParser: Ignore positional after keyword Tweak cmArgumentParser to ignore positional arguments once a keyword argument has been seen. This prevents mingling of keyword arguments being able to effectively skip positional arguments, with later arguments being picked up again; this seems highly likely to lead to user confusion. This is also consistent with how other languages (e.g. Python) handle a mix of "named" and positional arguments. 17 August 2022, 15:03:51 UTC
409e77a Merge branch 'release-3.24' 17 August 2022, 14:16:10 UTC
8ad94b1 Merge topic 'FindVulkan-tolerate-FATAL_ERROR' 9063674517 Help: Add 3.24 release note about FindVulkan component enforcement bc01362368 FindVulkan: Restore tolerance of unknown FATAL_ERROR component Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7583 17 August 2022, 14:16:10 UTC
bc7dca3 Merge topic 'FindVulkan-tolerate-FATAL_ERROR' into release-3.24 9063674517 Help: Add 3.24 release note about FindVulkan component enforcement bc01362368 FindVulkan: Restore tolerance of unknown FATAL_ERROR component Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7583 17 August 2022, 14:16:09 UTC
9063674 Help: Add 3.24 release note about FindVulkan component enforcement Since commit 6e4d20921d (FindVulkan: Add component for `shaderc_combined`, 2022-05-18, v3.24.0-rc1~111^2~5), the module rejects unknown components. Add a release note about this behavior change. Issue: #23849 17 August 2022, 13:52:14 UTC
bc01362 FindVulkan: Restore tolerance of unknown FATAL_ERROR component `find_package(Vulkan REQUIRED FATAL_ERROR)` calls exist in the wild, but `find_package` does not have a `FATAL_ERROR` option. We silently tolerated such calls prior to commit 6e4d20921d (FindVulkan: Add component for `shaderc_combined`, 2022-05-18, v3.24.0-rc1~111^2~5), by treating the argument as a component and ignoring it. Restore tolerance by removing the component and warning about it. Fixes: #23849 17 August 2022, 13:52:12 UTC
2216826 Merge topic 'fix-gcov-test' 0ccaa7ecb9 Tests: Fix GCOV test in unusual environments Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7580 17 August 2022, 12:45:19 UTC
8c144f0 Merge topic 'output_all_attempts_at_compiler_detection' 9c5bd7fe3a CompilerId: Output errors from all attempts at detection Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7576 17 August 2022, 12:44:26 UTC
b0ab42c Merge topic 'fix-xcode-install-path' 61acaa12af xcode: Don't set INSTALL_PATH unless target is SHARED_LIBRARY Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7473 17 August 2022, 12:41:33 UTC
49d5cee Merge branch 'release-3.24' 17 August 2022, 12:34:07 UTC
8a2eafe Merge topic 'ci-msvc-14.33' 6f17996edc gitlab-ci: Update Windows builds to MSVC 14.33 toolset Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7578 17 August 2022, 12:34:06 UTC
d3f58ea Merge topic 'ci-msvc-14.33' into release-3.24 6f17996edc gitlab-ci: Update Windows builds to MSVC 14.33 toolset Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7578 17 August 2022, 12:34:05 UTC
eb10bcb CMake Nightly Date Stamp 17 August 2022, 04:01:14 UTC
0ccaa7e Tests: Fix GCOV test in unusual environments Tweak path computation in CTestCoverageCollectGCOV test so that the test doesn't spuriously fail if the build directory is a symlink. 16 August 2022, 19:36:50 UTC
61acaa1 xcode: Don't set INSTALL_PATH unless target is SHARED_LIBRARY An empty INSTALL_PATH will confuse Xcode, resulting in the archive action producing archives that can not be uploaded to the App Store. The logic to pull out a install_name_dir only applies to SHARED_LIBRARY targets, so we can skip the setting of the property for all other targets. There might be cases where the INSTALL_PATH code path will also end up setting an empty INSTALL_PATH, but it's unclear whether this is a problem, so to keep the patch minimal the existing code is left as is. Fixes: #15183 16 August 2022, 17:35:36 UTC
6f17996 gitlab-ci: Update Windows builds to MSVC 14.33 toolset 16 August 2022, 17:20:48 UTC
5b949bb Merge topic 'refactor-environment-modification' a5d45e685f Tests: Add case for ENVIRONMENT_MODIFICATION property OP=reset behavior e2854b4fa2 cmCTestRunTest: Implement the ENVIRONMENT test property with EnvDiff too bfa1c5285b cmSystemTools: Add EnvDiff class to hold ENVIRONMENT_MODIFICATION logic a0b1c4ee90 cmCTestRunTest: Simplify by using GetSystemPathlistSeparator 4e6cbb1f13 cmCTestRunTest: Remove unnecessary CMAKE_BOOTSTRAP guard Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7572 16 August 2022, 17:03:33 UTC
4a82938 Merge topic 'nvhpc_fpie_support' 52dc49deb9 NVHPC: Enable PIE support on linux Acked-by: Kitware Robot <kwrobot@kitware.com> Reviewed-by: Raul Tambre <raul@tambre.ee> Merge-request: !7564 16 August 2022, 17:01:31 UTC
47a2eb8 Merge topic 'tutorial_step1_update' 953d729622 Tutorial: Collapse step 1 solutions c59e164155 Tutorial: Add Step 1 background info and update style Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7497 16 August 2022, 16:59:40 UTC
7b1ab24 Merge topic 'doc-compiler-id-table' a8430527f3 Help: `CMAKE_<LANG>_COMPILER_ID` turn code block into table Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7567 16 August 2022, 16:58:42 UTC
67465ca Merge topic 'xcode-avoid-compile-flags-on-resources' 7b2359ac53 Xcode: don't set SKIP_PRECOMPILE_HEADERS when source has no language Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: Cristian Adam <cristian.adam@gmail.com> Merge-request: !7562 16 August 2022, 16:50:00 UTC
14aca54 Merge topic 'doc-cmake-cli-options' 0224576995 Help: Replace `cmake -P` option mentions w/ Sphinx role 1b94770f27 Help: Insert link to `cmake --toolchain` option 2c54cd871a Help: Turn items of presets manual page into description list e2198fd9dc Help: Format `-Werror`/`-Wno-error` in the way it can be referenced a6070b480f Help: Use placeholder instead of listing choices in option lines 8ba20cb56f Help: Simplify `cmake --log-level` option definition 146e4e6bad Help: Split `ctest` options into groups like `cmake` man page has 4c1008d739 Help: Use `:option:` role to reference `ctest` options ... Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7554 16 August 2022, 16:46:26 UTC
6bc2048 Merge branch 'release-3.24' 16 August 2022, 16:43:53 UTC
90607d1 Merge topic 'mingw-windres' e9755bc7c1 MinGW: Restore using windres when toolchain-prefixed name is not available Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7574 16 August 2022, 16:43:53 UTC
d83505b Merge topic 'mingw-windres' into release-3.24 e9755bc7c1 MinGW: Restore using windres when toolchain-prefixed name is not available Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7574 16 August 2022, 16:43:52 UTC
5a3a529 Merge branch 'release-3.24' 16 August 2022, 16:42:21 UTC
ea73a8e Merge topic 'export-no-shdeps' 0ebff0d61a export: Restore exclusion of private shared library dependencies from checks Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7557 16 August 2022, 16:42:21 UTC
349071d Merge topic 'export-no-shdeps' into release-3.24 0ebff0d61a export: Restore exclusion of private shared library dependencies from checks Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7557 16 August 2022, 16:42:20 UTC
db1a284 Merge branch 'release-3.24' 16 August 2022, 16:40:49 UTC
c082c5c Merge topic 'automoc-silence-warnings' 844244ccdc automoc: avoid compiler warnings in linker-warning-silencing code Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7558 16 August 2022, 16:40:48 UTC
5bd618b Merge topic 'automoc-silence-warnings' into release-3.24 844244ccdc automoc: avoid compiler warnings in linker-warning-silencing code Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !7558 16 August 2022, 16:40:47 UTC
9c5bd7f CompilerId: Output errors from all attempts at detection Instead of printing the output of the last attempt, print the output of all attempts. This shows users that CMake isn't ignoring any provided flags ( LANG_FLAGS ). 16 August 2022, 15:59:46 UTC
9ce5018 Merge branch 'release-3.24' 16 August 2022, 10:57:32 UTC
69d5843 Merge topic 'doc-warning-as-error' 2c6e379c89 Merge branch 'backport-3.24-doc-warning-as-error' into doc-warning-as-error bba3ec96b0 Help: A missing cross-reference to --compile-no-warning-as-error 2c1a746343 Merge branch 'backport-3.24-doc-warning-as-error' into doc-warning-as-error 680fe820c6 Help: A missing cross-reference to --compile-no-warning-as-error 7ad89f8fb1 Help: List compiler IDs supported by COMPILE_WARNING_AS_ERROR Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7561 16 August 2022, 10:57:32 UTC
e6038c0 Merge topic 'doc-warning-as-error' into release-3.24 680fe820c6 Help: A missing cross-reference to --compile-no-warning-as-error 7ad89f8fb1 Help: List compiler IDs supported by COMPILE_WARNING_AS_ERROR Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7561 16 August 2022, 10:57:31 UTC
35759e2 Fortran: cleanup compiler default search list Made GNU gfortran be last in the list as per the docstring immmediately preceding. One high-level version-free name per vendor. 16 August 2022, 10:20:06 UTC
ca2f19c CMake Nightly Date Stamp 16 August 2022, 04:01:09 UTC
a5d45e6 Tests: Add case for ENVIRONMENT_MODIFICATION property OP=reset behavior When processing the reset operation in the context of a CTest `ENVIRONMENT_MODIFICATION` property, the value the variable is reset to is the one it had after `ENVIRONMENT` was processed, not before. This was broken once during refactoring and is subtle enough that it should be tested. 15 August 2022, 18:19:21 UTC
e2854b4 cmCTestRunTest: Implement the ENVIRONMENT test property with EnvDiff too Going through the same internal API for both `ENVIRONMENT` and `ENVIRONMENT_MODIFICATION` properties will make it easier to implement checkpointing for `MYVAR=reset:` more efficiently if the need ever presents itself. It also makes the two-stage nature of the environment mutation clearer in the code itself. 15 August 2022, 18:19:16 UTC
bfa1c52 cmSystemTools: Add EnvDiff class to hold ENVIRONMENT_MODIFICATION logic Prepare to re-use this logic when enhancing `cmake -E env`. 15 August 2022, 18:11:47 UTC
a0b1c4e cmCTestRunTest: Simplify by using GetSystemPathlistSeparator Part of the implementation of `ENVIRONMENT_MODIFICATION` replicated the logic in this function. Using it here de-duplicates code and will be useful during the upcoming refactoring. 15 August 2022, 18:11:20 UTC
4e6cbb1 cmCTestRunTest: Remove unnecessary CMAKE_BOOTSTRAP guard CTest is not compiled during CMake's `bootstrap` build. 15 August 2022, 18:10:34 UTC
e9755bc MinGW: Restore using windres when toolchain-prefixed name is not available Since commit 55ba10dcfd (MSYS/MinGW Makefiles: Simplify selection of windres as Resource Compiler, 2022-05-26, v3.24.0-rc1~82^2) the `MinGW Makefiles` and `MSYS Makefiles` generators no longer specify the plain `windres` name for the MinGW resource compiler. Instead, the name is specified in our MinGW platform information module. After the change in commit af4adf6aa9 (MinGW: Fix default windres selection when cross-compiling, 2020-03-25, v3.18.0-rc1~492^2), when cross-compiling, we only specify the toolchain-prefixed name of the tool, which may not be available in all environments. If the toolchain-prefixed name is not available, fall back to the plain `windres` name. We already use this approach for other binutils. Fixes: #23841 15 August 2022, 17:57:58 UTC
52dc49d NVHPC: Enable PIE support on linux 15 August 2022, 17:39:30 UTC
a843052 Help: `CMAKE_<LANG>_COMPILER_ID` turn code block into table 15 August 2022, 16:37:25 UTC
953d729 Tutorial: Collapse step 1 solutions 15 August 2022, 16:06:46 UTC
c59e164 Tutorial: Add Step 1 background info and update style 15 August 2022, 16:06:34 UTC
4befac3 Merge topic 'nvtx3' cd200c6c2d FindCUDAToolkit: nvtx3 target Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7568 15 August 2022, 15:26:23 UTC
2c6e379 Merge branch 'backport-3.24-doc-warning-as-error' into doc-warning-as-error 15 August 2022, 15:09:11 UTC
bba3ec9 Help: A missing cross-reference to --compile-no-warning-as-error 15 August 2022, 15:08:38 UTC
2c1a746 Merge branch 'backport-3.24-doc-warning-as-error' into doc-warning-as-error 15 August 2022, 15:06:59 UTC
680fe82 Help: A missing cross-reference to --compile-no-warning-as-error 15 August 2022, 15:06:51 UTC
7ad89f8 Help: List compiler IDs supported by COMPILE_WARNING_AS_ERROR 15 August 2022, 15:06:31 UTC
a1dbe7b Merge branch 'release-3.24' 15 August 2022, 14:51:45 UTC
c5f6d93 Merge topic 'warning-as-error-ti-compiler' 1cd65dfa0e TI compiler: Add support for COMPILE_WARNING_AS_ERROR target property Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Josef Angstenberger <code@jtxa.de> Merge-request: !7560 15 August 2022, 14:51:45 UTC
732cad4 Merge topic 'warning-as-error-ti-compiler' into release-3.24 1cd65dfa0e TI compiler: Add support for COMPILE_WARNING_AS_ERROR target property Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Josef Angstenberger <code@jtxa.de> Merge-request: !7560 15 August 2022, 14:51:44 UTC
c1285c1 Merge branch 'release-3.24' 15 August 2022, 14:48:27 UTC
d0a307d Merge topic 'mingw-flto' 7b2a87c2eb IPO: Do not use -flto=auto with GCC 10.x on Windows Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7559 15 August 2022, 14:48:27 UTC
2d08a35 Merge topic 'mingw-flto' into release-3.24 7b2a87c2eb IPO: Do not use -flto=auto with GCC 10.x on Windows Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7559 15 August 2022, 14:48:26 UTC
0ebff0d export: Restore exclusion of private shared library dependencies from checks Refactoring in commit 8c65b7042e (cmExportFileGenerator: Simplify collection of targets missing from export set, 2022-04-11, v3.24.0-rc1~281^2) accidentally dropped the behavior change from commit 0ad2a1c181 (Export: Never treat private link libraries as public package dependencies., 2013-09-24, v3.0.0-rc1~559^2). Restore the behavior and add a test. Fixes: #23838 15 August 2022, 14:40:03 UTC
7f2eada CMake Nightly Date Stamp 15 August 2022, 04:01:27 UTC
0224576 Help: Replace `cmake -P` option mentions w/ Sphinx role 14 August 2022, 05:58:42 UTC
1b94770 Help: Insert link to `cmake --toolchain` option 14 August 2022, 05:58:42 UTC
2c54cd8 Help: Turn items of presets manual page into description list It was an ordinal paragraphs (`<p>`) intermixed with blockquote elements. 14 August 2022, 05:58:41 UTC
e2198fd Help: Format `-Werror`/`-Wno-error` in the way it can be referenced Replace mentions of these options in the presets manual page. 14 August 2022, 05:58:41 UTC
a6070b4 Help: Use placeholder instead of listing choices in option lines This avoids any ambiguity with whether the choices are literal values or not. It also makes the option lines more concise. 14 August 2022, 05:58:41 UTC
8ba20cb Help: Simplify `cmake --log-level` option definition 14 August 2022, 05:58:41 UTC
146e4e6 Help: Split `ctest` options into groups like `cmake` man page has Co-Authored-By: Craig Scott <craig.scott@crascit.com> 14 August 2022, 05:58:41 UTC
4c1008d Help: Use `:option:` role to reference `ctest` options 14 August 2022, 05:58:41 UTC
c401fc5 Help: Simplify optional repeating option Similar form has already been used in the `ctest -M <mode> [-T <step>]...` synopsis and looks quite clean w/o extra characters. 14 August 2022, 05:58:41 UTC
28ecfd1 Help: Short options first, then long, then Windows style 14 August 2022, 05:58:41 UTC
57f23fa Help: `{<…> | <…>}` → `<…|…>` The form of alternative names for "placeholders" has been used already (e.g., `<file|dir>` in the `cmake(1)` manual). 14 August 2022, 05:58:41 UTC
5a20d4c Help: Consistent spaces in option args 14 August 2022, 05:58:41 UTC
798834e Help: `<f>` → `<file>` for `--help*` option descriptions 14 August 2022, 05:58:41 UTC
a57ad5e Merge topic 'FetchContent-protobuf-example-CMP0077' b57681dc34 FetchContent: Fix protobuf example to avoid CMP0077 warning Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7565 14 August 2022, 05:17:27 UTC
db9453b Merge topic 'doc-MSVC_RUNTIME_LIBRARY-init' c1b07ca9da Help: MSVC_RUNTIME_LIBRARY is initialized from associated variable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7566 14 August 2022, 05:13:51 UTC
6752268 CMake Nightly Date Stamp 14 August 2022, 04:01:09 UTC
cd200c6 FindCUDAToolkit: nvtx3 target nvtx3 is a header-only replacement for the previous shared library implementations. I implemented it as a separate target since while the header names match and ideally it should be API compatible, forcing its include directory into the old target would lengthen the include search path and could cause confusion or possible build differences for projects using multiple build systems. This keeps it explicit as a developer opt-in. Implements: #21377 Resolves: #23835 13 August 2022, 20:52:42 UTC
dc5bf8f CMake Nightly Date Stamp 13 August 2022, 04:01:12 UTC
b57681d FetchContent: Fix protobuf example to avoid CMP0077 warning The protobuf example would raise a "Policy CMP0077" warning and protobuf tests would still be built, e.g. setting the variable is ignored in latest CMake. Set an INTERNAL cache variable instead so that CMP0077 warnings won't be triggered. 12 August 2022, 23:44:45 UTC
cb2f1f6 Merge topic 'linux-var' 62cd3904bf variable: Set LINUX variable on Linux target systems Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !7556 12 August 2022, 23:32:45 UTC
c1b07ca Help: MSVC_RUNTIME_LIBRARY is initialized from associated variable The CMAKE_MSVC_RUNTIME_LIBRARY variable docs mention that it initializes the MSVC_RUNTIME_LIBRARY target property, but the property's docs was missing any mention of the variable. 12 August 2022, 23:11:35 UTC
c4a07be CMake Nightly Date Stamp 12 August 2022, 04:01:07 UTC
1cd65df TI compiler: Add support for COMPILE_WARNING_AS_ERROR target property 11 August 2022, 22:27:19 UTC
62cd390 variable: Set LINUX variable on Linux target systems Fixes: #23840 11 August 2022, 21:20:05 UTC
7b2359a Xcode: don't set SKIP_PRECOMPILE_HEADERS when source has no language Resources that should go into "Copy Bundle Resources" build phase are added as source files but don't have an associated language Fixes: #23821 11 August 2022, 12:26:30 UTC
back to top