annotate runtime/syntax/cmake.vim @ 34481:de28179cc9cd

runtime(sh): Update syntax file, fix issue #962 (#14138) Commit: https://github.com/vim/vim/commit/1bdc9435c1a14ca1a30e5b5927ab63f603ec4409 Author: dkearns <dougkearns@gmail.com> Date: Tue Mar 5 05:14:08 2024 +1100 runtime(sh): Update syntax file, fix issue https://github.com/vim/vim/issues/962 (https://github.com/vim/vim/issues/14138) Allow the opening parenthesis of a multiline array assignment, within an if statement, to appear at EOL. Fixes issue #962. Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Mon, 04 Mar 2024 19:15:06 +0100
parents c82f521e9a43
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
1 " Vim syntax file
2249
6d3d35ff2c2b Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
2 " Program: CMake - Cross-Platform Makefile Generator
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3 " Version: cmake version 3.27.20230713-gdc88dd5
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
4 " Language: CMake
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
5 " Author: Andy Cedilnik <andy.cedilnik@kitware.com>,
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
6 " Nicholas Hutchinson <nshutchinson@gmail.com>,
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
7 " Patrick Boettcher <patrick.boettcher@posteo.de>
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
8 " Maintainer: Dimitri Merejkowsky <d.merej@gmail.com>
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
9 " Former Maintainer: Karthik Krishnan <karthik.krishnan@kitware.com>
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
10 " Last Change: 2023 Jul 13
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
11 "
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
12 " License: The CMake license applies to this file. See
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
13 " https://cmake.org/licensing
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
14 " This implies that distribution with Vim is allowed
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
15
10048
43efa4f5a8ea commit https://github.com/vim/vim/commit/89bcfda6834aba724d12554a34b9ed49f5789fd5
Christian Brabandt <cb@256bit.org>
parents: 7384
diff changeset
16 if exists("b:current_syntax")
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
17 finish
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
18 endif
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2249
diff changeset
19 let s:keepcpo= &cpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2249
diff changeset
20 set cpo&vim
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
21
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
22 syn region cmakeBracketArgument start="\[\z(=*\)\[" end="\]\z1\]" contains=cmakeTodo,@Spell
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
23
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
24 syn region cmakeComment start="#\(\[=*\[\)\@!" end="$" contains=cmakeTodo,@Spell
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
25 syn region cmakeBracketComment start="#\[\z(=*\)\[" end="\]\z1\]" contains=cmakeTodo,@Spell
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
26
2249
6d3d35ff2c2b Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
27 syn match cmakeEscaped /\(\\\\\|\\"\|\\n\|\\t\)/ contained
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
28 syn region cmakeRegistry start="\[" end="]" contained oneline contains=cmakeTodo,cmakeEscaped
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
29
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
30 syn region cmakeGeneratorExpression start="$<" end=">" contained oneline contains=cmakeVariableValue,cmakeProperty,cmakeGeneratorExpressions,cmakeTodo
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
31
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
32 syn region cmakeString start='"' end='"' contained contains=cmakeTodo,cmakeVariableValue,cmakeEscaped,@Spell
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
33
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
34 syn region cmakeVariableValue start="${" end="}" contained oneline contains=cmakeVariable,cmakeTodo,cmakeVariableValue
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
35
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
36 syn region cmakeEnvironment start="$ENV{" end="}" contained oneline contains=cmakeTodo
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
37
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
38 syn region cmakeArguments start="(" end=")" contains=ALLBUT,cmakeGeneratorExpressions,cmakeCommand,cmakeCommandConditional,cmakeCommandRepeat,cmakeCommandDeprecated,cmakeCommandManuallyAdded,cmakeArguments,cmakeTodo,@Spell
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
39
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
40 syn case match
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
41
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
42 syn keyword cmakeProperty contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
43 \ ABSTRACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
44 \ ADDITIONAL_CLEAN_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
45 \ ADDITIONAL_MAKE_CLEAN_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
46 \ ADVANCED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
47 \ AIX_EXPORT_ALL_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
48 \ ALIASED_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
49 \ ALIAS_GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
50 \ ALLOW_DUPLICATE_CUSTOM_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
51 \ ANDROID_ANT_ADDITIONAL_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
52 \ ANDROID_API
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
53 \ ANDROID_API_MIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
54 \ ANDROID_ARCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
55 \ ANDROID_ASSETS_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
56 \ ANDROID_GUI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
57 \ ANDROID_JAR_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
58 \ ANDROID_JAR_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
59 \ ANDROID_JAVA_SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
60 \ ANDROID_NATIVE_LIB_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
61 \ ANDROID_NATIVE_LIB_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
62 \ ANDROID_PROCESS_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
63 \ ANDROID_PROGUARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
64 \ ANDROID_PROGUARD_CONFIG_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
65 \ ANDROID_SECURE_PROPS_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
66 \ ANDROID_SKIP_ANT_STEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
67 \ ANDROID_STL_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
68 \ ARCHIVE_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
69 \ ARCHIVE_OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
70 \ ATTACHED_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
71 \ ATTACHED_FILES_ON_FAIL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
72 \ AUTOGEN_BUILD_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
73 \ AUTOGEN_COMMAND_LINE_LENGTH_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
74 \ AUTOGEN_ORIGIN_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
75 \ AUTOGEN_PARALLEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
76 \ AUTOGEN_SOURCE_GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
77 \ AUTOGEN_USE_SYSTEM_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
78 \ AUTOGEN_TARGETS_FOLDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
79 \ AUTOGEN_TARGET_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
80 \ AUTOGEN_USE_SYSTEM_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
81 \ AUTOMOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
82 \ AUTOMOC_COMPILER_PREDEFINES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
83 \ AUTOMOC_DEPEND_FILTERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
84 \ AUTOMOC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
85 \ AUTOMOC_MACRO_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
86 \ AUTOMOC_MOC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
87 \ AUTOMOC_PATH_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
88 \ AUTOMOC_SOURCE_GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
89 \ AUTOMOC_TARGETS_FOLDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
90 \ AUTORCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
91 \ AUTORCC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
92 \ AUTORCC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
93 \ AUTORCC_SOURCE_GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
94 \ AUTOUIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
95 \ AUTOUIC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
96 \ AUTOUIC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
97 \ AUTOUIC_SEARCH_PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
98 \ AUTOUIC_SOURCE_GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
99 \ BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
100 \ BUILDSYSTEM_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
101 \ BUILD_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
102 \ BUILD_RPATH_USE_ORIGIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
103 \ BUILD_WITH_INSTALL_NAME_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
104 \ BUILD_WITH_INSTALL_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
105 \ BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
106 \ BUNDLE_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
107 \ CACHE_VARIABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
108 \ CLEAN_NO_CUSTOM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
109 \ CMAKE_CONFIGURE_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
110 \ CMAKE_CUDA_KNOWN_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
111 \ CMAKE_CXX_KNOWN_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
112 \ CMAKE_C_KNOWN_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
113 \ CMAKE_ROLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
114 \ COMMON_LANGUAGE_RUNTIME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
115 \ COMPATIBLE_INTERFACE_BOOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
116 \ COMPATIBLE_INTERFACE_NUMBER_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
117 \ COMPATIBLE_INTERFACE_NUMBER_MIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
118 \ COMPATIBLE_INTERFACE_STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
119 \ COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
120 \ COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
121 \ COMPILE_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
122 \ COMPILE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
123 \ COMPILE_PDB_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
124 \ COMPILE_PDB_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
125 \ COMPILE_WARNING_AS_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
126 \ COST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
127 \ CPACK_DESKTOP_SHORTCUTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
128 \ CPACK_NEVER_OVERWRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
129 \ CPACK_PERMANENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
130 \ CPACK_STARTUP_SHORTCUTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
131 \ CPACK_START_MENU_SHORTCUTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
132 \ CPACK_WIX_ACL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
133 \ CROSSCOMPILING_EMULATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
134 \ CUDA_ARCHITECTURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
135 \ CUDA_CUBIN_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
136 \ CUDA_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
137 \ CUDA_FATBIN_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
138 \ CUDA_OPTIX_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
139 \ CUDA_PTX_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
140 \ CUDA_RESOLVE_DEVICE_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
141 \ CUDA_RUNTIME_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
142 \ CUDA_SEPARABLE_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
143 \ CUDA_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
144 \ CUDA_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
145 \ CXX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
146 \ CXX_MODULE_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
147 \ CXX_MODULE_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
148 \ CXX_MODULE_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
149 \ CXX_SCAN_FOR_MODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
150 \ CXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
151 \ CXX_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
152 \ C_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
153 \ C_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
154 \ C_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
155 \ DEBUG_CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
156 \ DEBUG_POSTFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
157 \ DEFINE_SYMBOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
158 \ DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
159 \ DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
160 \ DEPLOYMENT_ADDITIONAL_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
161 \ DEPLOYMENT_REMOTE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
162 \ DEPRECATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
163 \ DISABLED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
164 \ DISABLED_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
165 \ DISABLE_PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
166 \ DLL_NAME_WITH_SOVERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
167 \ DOTNET_SDK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
168 \ DOTNET_TARGET_FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
169 \ DOTNET_TARGET_FRAMEWORK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
170 \ ECLIPSE_EXTRA_CPROJECT_CONTENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
171 \ ECLIPSE_EXTRA_NATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
172 \ ENABLED_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
173 \ ENABLED_LANGUAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
174 \ ENABLE_EXPORTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
175 \ ENVIRONMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
176 \ ENVIRONMENT_MODIFICATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
177 \ EXCLUDE_FROM_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
178 \ EXCLUDE_FROM_DEFAULT_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
179 \ EXPORT_COMPILE_COMMANDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
180 \ EXPORT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
181 \ EXPORT_NO_SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
182 \ EXPORT_PROPERTIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
183 \ EXTERNAL_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
184 \ EchoString
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
185 \ FAIL_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
186 \ FIND_LIBRARY_USE_LIB32_PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
187 \ FIND_LIBRARY_USE_LIB64_PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
188 \ FIND_LIBRARY_USE_LIBX32_PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
189 \ FIND_LIBRARY_USE_OPENBSD_VERSIONING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
190 \ FIXTURES_CLEANUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
191 \ FIXTURES_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
192 \ FIXTURES_SETUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
193 \ FOLDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
194 \ FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
195 \ FRAMEWORK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
196 \ Fortran_BUILDING_INSTRINSIC_MODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
197 \ Fortran_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
198 \ Fortran_MODULE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
199 \ Fortran_PREPROCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
200 \ GENERATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
201 \ GENERATOR_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
202 \ GENERATOR_IS_MULTI_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
203 \ GHS_INTEGRITY_APP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
204 \ GHS_NO_SOURCE_GROUP_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
205 \ GLOBAL_DEPENDS_DEBUG_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
206 \ GLOBAL_DEPENDS_NO_CYCLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
207 \ GNUtoMS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
208 \ HAS_CXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
209 \ HEADER_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
210 \ HEADER_FILE_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
211 \ HEADER_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
212 \ HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
213 \ HELPSTRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
214 \ HIP_ARCHITECTURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
215 \ HIP_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
216 \ HIP_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
217 \ HIP_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
218 \ IMPLICIT_DEPENDS_INCLUDE_TRANSFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
219 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
220 \ IMPORTED_COMMON_LANGUAGE_RUNTIME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
221 \ IMPORTED_CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
222 \ IMPORTED_GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
223 \ IMPORTED_IMPLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
224 \ IMPORTED_LIBNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
225 \ IMPORTED_LINK_DEPENDENT_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
226 \ IMPORTED_LINK_INTERFACE_LANGUAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
227 \ IMPORTED_LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
228 \ IMPORTED_LINK_INTERFACE_MULTIPLICITY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
229 \ IMPORTED_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
230 \ IMPORTED_NO_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
231 \ IMPORTED_NO_SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
232 \ IMPORTED_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
233 \ IMPORTED_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
234 \ IMPORTED_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
235 \ IMPORT_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
236 \ IMPORT_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
237 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
238 \ INCLUDE_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
239 \ INSTALL_NAME_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
240 \ INSTALL_REMOVE_ENVIRONMENT_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
241 \ INSTALL_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
242 \ INSTALL_RPATH_USE_LINK_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
243 \ INTERFACE_AUTOMOC_MACRO_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
244 \ INTERFACE_AUTOUIC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
245 \ INTERFACE_AUTOMOC_MACRO_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
246 \ INTERFACE_COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
247 \ INTERFACE_COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
248 \ INTERFACE_COMPILE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
249 \ INTERFACE_CXX_MODULE_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
250 \ INTERFACE_HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
251 \ INTERFACE_HEADER_SETS_TO_VERIFY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
252 \ INTERFACE_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
253 \ INTERFACE_LINK_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
254 \ INTERFACE_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
255 \ INTERFACE_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
256 \ INTERFACE_LINK_LIBRARIES_DIRECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
257 \ INTERFACE_LINK_LIBRARIES_DIRECT_EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
258 \ INTERFACE_LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
259 \ INTERFACE_POSITION_INDEPENDENT_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
260 \ INTERFACE_PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
261 \ INTERFACE_SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
262 \ INTERFACE_SYSTEM_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
263 \ INTERPROCEDURAL_OPTIMIZATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
264 \ IN_TRY_COMPILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
265 \ IOS_INSTALL_COMBINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
266 \ ISPC_HEADER_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
267 \ ISPC_HEADER_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
268 \ ISPC_INSTRUCTION_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
269 \ JOB_POOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
270 \ JOB_POOL_COMPILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
271 \ JOB_POOL_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
272 \ JOB_POOL_PRECOMPILE_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
273 \ KEEP_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
274 \ LABELS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
275 \ LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
276 \ LIBRARY_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
277 \ LIBRARY_OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
278 \ LINKER_LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
279 \ LINK_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
280 \ LINK_DEPENDS_NO_SHARED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
281 \ LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
282 \ LINK_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
283 \ LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
284 \ LINK_INTERFACE_MULTIPLICITY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
285 \ LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
286 \ LINK_LIBRARIES_ONLY_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
287 \ LINK_LIBRARY_OVERRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
288 \ LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
289 \ LINK_SEARCH_END_STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
290 \ LINK_SEARCH_START_STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
291 \ LINK_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
292 \ LISTFILE_STACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
293 \ LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
294 \ MACHO_COMPATIBILITY_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
295 \ MACHO_CURRENT_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
296 \ MACOSX_BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
297 \ MACOSX_BUNDLE_INFO_PLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
298 \ MACOSX_FRAMEWORK_INFO_PLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
299 \ MACOSX_PACKAGE_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
300 \ MACOSX_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
301 \ MACROS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
302 \ MANUALLY_ADDED_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
303 \ MEASUREMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
304 \ MODIFIED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
305 \ MSVC_DEBUG_INFORMATION_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
306 \ MSVC_RUNTIME_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
307 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
308 \ NO_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
309 \ NO_SYSTEM_FROM_IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
310 \ OBJCXX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
311 \ OBJCXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
312 \ OBJCXX_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
313 \ OBJC_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
314 \ OBJC_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
315 \ OBJC_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
316 \ OBJECT_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
317 \ OBJECT_OUTPUTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
318 \ OPTIMIZE_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
319 \ OSX_ARCHITECTURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
320 \ OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
321 \ PACKAGES_FOUND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
322 \ PACKAGES_NOT_FOUND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
323 \ PARENT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
324 \ PASS_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
325 \ PCH_INSTANTIATE_TEMPLATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
326 \ PCH_WARN_INVALID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
327 \ PDB_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
328 \ PDB_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
329 \ POSITION_INDEPENDENT_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
330 \ POST_INSTALL_SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
331 \ PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
332 \ PRECOMPILE_HEADERS_REUSE_FROM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
333 \ PREDEFINED_TARGETS_FOLDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
334 \ PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
335 \ PRE_INSTALL_SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
336 \ PRIVATE_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
337 \ PROCESSORS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
338 \ PROCESSOR_AFFINITY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
339 \ PROJECT_LABEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
340 \ PUBLIC_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
341 \ REPORT_UNDEFINED_PROPERTIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
342 \ REQUIRED_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
343 \ RESOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
344 \ RESOURCE_GROUPS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
345 \ RESOURCE_LOCK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
346 \ RULE_LAUNCH_COMPILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
347 \ RULE_LAUNCH_CUSTOM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
348 \ RULE_LAUNCH_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
349 \ RULE_MESSAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
350 \ RUNTIME_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
351 \ RUNTIME_OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
352 \ RUN_SERIAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
353 \ SKIP_AUTOGEN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
354 \ SKIP_AUTOMOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
355 \ SKIP_AUTORCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
356 \ SKIP_AUTOUIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
357 \ SKIP_BUILD_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
358 \ SKIP_LINTING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
359 \ SKIP_PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
360 \ SKIP_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
361 \ SKIP_RETURN_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
362 \ SKIP_UNITY_BUILD_INCLUSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
363 \ SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
364 \ SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
365 \ SOVERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
366 \ STATIC_LIBRARY_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
367 \ STATIC_LIBRARY_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
368 \ STRINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
369 \ SUBDIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
370 \ SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
371 \ SYMBOLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
372 \ SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
373 \ Swift_DEPENDENCIES_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
374 \ Swift_DIAGNOSTICS_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
375 \ Swift_LANGUAGE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
376 \ Swift_MODULE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
377 \ Swift_MODULE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
378 \ Swift_COMPILATION_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
379 \ TARGET_ARCHIVES_MAY_BE_SHARED_LIBS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
380 \ TARGET_MESSAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
381 \ TARGET_SUPPORTS_SHARED_LIBS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
382 \ TESTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
383 \ TEST_INCLUDE_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
384 \ TEST_INCLUDE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
385 \ TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
386 \ TIMEOUT_AFTER_MATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
387 \ TIMEOUT_SIGNAL_GRACE_PERIOD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
388 \ TIMEOUT_SIGNAL_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
389 \ TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
390 \ UNITY_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
391 \ UNITY_BUILD_BATCH_SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
392 \ UNITY_BUILD_CODE_AFTER_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
393 \ UNITY_BUILD_CODE_BEFORE_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
394 \ UNITY_BUILD_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
395 \ UNITY_BUILD_UNIQUE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
396 \ UNITY_GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
397 \ USE_FOLDERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
398 \ VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
399 \ VARIABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
400 \ VERIFY_INTERFACE_HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
401 \ VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
402 \ VISIBILITY_INLINES_HIDDEN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
403 \ VS_CONFIGURATION_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
404 \ VS_COPY_TO_OUT_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
405 \ VS_DEBUGGER_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
406 \ VS_DEBUGGER_COMMAND_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
407 \ VS_DEBUGGER_ENVIRONMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
408 \ VS_DEBUGGER_WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
409 \ VS_DEPLOYMENT_CONTENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
410 \ VS_DEPLOYMENT_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
411 \ VS_DESKTOP_EXTENSIONS_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
412 \ VS_DOTNET_DOCUMENTATION_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
413 \ VS_DOTNET_REFERENCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
414 \ VS_DOTNET_REFERENCES_COPY_LOCAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
415 \ VS_DOTNET_STARTUP_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
416 \ VS_DOTNET_TARGET_FRAMEWORK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
417 \ VS_DPI_AWARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
418 \ VS_GLOBAL_KEYWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
419 \ VS_GLOBAL_PROJECT_TYPES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
420 \ VS_GLOBAL_ROOTNAMESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
421 \ VS_INCLUDE_IN_VSIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
422 \ VS_IOT_EXTENSIONS_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
423 \ VS_IOT_STARTUP_TASK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
424 \ VS_JUST_MY_CODE_DEBUGGING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
425 \ VS_KEYWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
426 \ VS_MOBILE_EXTENSIONS_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
427 \ VS_NO_COMPILE_BATCHING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
428 \ VS_NO_SOLUTION_DEPLOY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
429 \ VS_PACKAGE_REFERENCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
430 \ VS_PLATFORM_TOOLSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
431 \ VS_PROJECT_IMPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
432 \ VS_RESOURCE_GENERATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
433 \ VS_SCC_AUXPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
434 \ VS_SCC_LOCALPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
435 \ VS_SCC_PROJECTNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
436 \ VS_SCC_PROVIDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
437 \ VS_SDK_REFERENCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
438 \ VS_SETTINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
439 \ VS_SHADER_DISABLE_OPTIMIZATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
440 \ VS_SHADER_ENABLE_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
441 \ VS_SHADER_ENTRYPOINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
442 \ VS_SHADER_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
443 \ VS_SHADER_MODEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
444 \ VS_SHADER_OBJECT_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
445 \ VS_SHADER_OUTPUT_HEADER_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
446 \ VS_SHADER_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
447 \ VS_SHADER_VARIABLE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
448 \ VS_SOLUTION_DEPLOY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
449 \ VS_STARTUP_PROJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
450 \ VS_TOOL_OVERRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
451 \ VS_USER_PROPS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
452 \ VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
453 \ VS_WINRT_COMPONENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
454 \ VS_WINRT_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
455 \ VS_WINRT_REFERENCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
456 \ VS_XAML_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
457 \ WATCOM_RUNTIME_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
458 \ WILL_FAIL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
459 \ WIN32_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
460 \ WINDOWS_EXPORT_ALL_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
461 \ WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
462 \ WRAP_EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
463 \ XCODE_EMBED_FRAMEWORKS_CODE_SIGN_ON_COPY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
464 \ XCODE_EMBED_FRAMEWORKS_REMOVE_HEADERS_ON_COPY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
465 \ XCODE_EMIT_EFFECTIVE_PLATFORM_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
466 \ XCODE_EXPLICIT_FILE_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
467 \ XCODE_FILE_ATTRIBUTES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
468 \ XCODE_GENERATE_SCHEME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
469 \ XCODE_LAST_KNOWN_FILE_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
470 \ XCODE_LINK_BUILD_PHASE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
471 \ XCODE_PRODUCT_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
472 \ XCODE_SCHEME_ADDRESS_SANITIZER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
473 \ XCODE_SCHEME_ADDRESS_SANITIZER_USE_AFTER_RETURN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
474 \ XCODE_SCHEME_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
475 \ XCODE_SCHEME_DEBUG_AS_ROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
476 \ XCODE_SCHEME_DEBUG_DOCUMENT_VERSIONING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
477 \ XCODE_SCHEME_ENABLE_GPU_FRAME_CAPTURE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
478 \ XCODE_SCHEME_DISABLE_MAIN_THREAD_CHECKER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
479 \ XCODE_SCHEME_DYNAMIC_LIBRARY_LOADS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
480 \ XCODE_SCHEME_DYNAMIC_LINKER_API_USAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
481 \ XCODE_SCHEME_ENABLE_GPU_API_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
482 \ XCODE_SCHEME_ENABLE_GPU_FRAME_CAPTURE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
483 \ XCODE_SCHEME_ENABLE_GPU_SHADER_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
484 \ XCODE_SCHEME_ENVIRONMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
485 \ XCODE_SCHEME_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
486 \ XCODE_SCHEME_GUARD_MALLOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
487 \ XCODE_SCHEME_LAUNCH_CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
488 \ XCODE_SCHEME_LAUNCH_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
489 \ XCODE_SCHEME_MAIN_THREAD_CHECKER_STOP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
490 \ XCODE_SCHEME_MALLOC_GUARD_EDGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
491 \ XCODE_SCHEME_MALLOC_SCRIBBLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
492 \ XCODE_SCHEME_MALLOC_STACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
493 \ XCODE_SCHEME_THREAD_SANITIZER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
494 \ XCODE_SCHEME_THREAD_SANITIZER_STOP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
495 \ XCODE_SCHEME_UNDEFINED_BEHAVIOUR_SANITIZER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
496 \ XCODE_SCHEME_UNDEFINED_BEHAVIOUR_SANITIZER_STOP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
497 \ XCODE_SCHEME_ENABLE_GPU_API_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
498 \ XCODE_SCHEME_ENABLE_GPU_SHADER_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
499 \ XCODE_SCHEME_LAUNCH_CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
500 \ XCODE_SCHEME_WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
501 \ XCODE_SCHEME_ZOMBIE_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
502 \ XCODE_XCCONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
503 \ XCTEST
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
504
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
505 syn keyword cmakeVariable contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
506 \ ANDROID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
507 \ APPLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
508 \ BORLAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
509 \ BSD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
510 \ BUILD_SHARED_LIBS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
511 \ CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
512 \ CMAKE_ABSOLUTE_DESTINATION_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
513 \ CMAKE_ADD_CUSTOM_COMMAND_DEPENDS_EXPLICIT_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
514 \ CMAKE_ADSP_ROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
515 \ CMAKE_AIX_EXPORT_ALL_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
516 \ CMAKE_ANDROID_ANT_ADDITIONAL_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
517 \ CMAKE_ANDROID_API
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
518 \ CMAKE_ANDROID_API_MIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
519 \ CMAKE_ANDROID_ARCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
520 \ CMAKE_ANDROID_ARCH_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
521 \ CMAKE_ANDROID_ARM_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
522 \ CMAKE_ANDROID_ARM_NEON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
523 \ CMAKE_ANDROID_ASSETS_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
524 \ CMAKE_ANDROID_EXCEPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
525 \ CMAKE_ANDROID_GUI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
526 \ CMAKE_ANDROID_JAR_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
527 \ CMAKE_ANDROID_JAR_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
528 \ CMAKE_ANDROID_JAVA_SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
529 \ CMAKE_ANDROID_NATIVE_LIB_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
530 \ CMAKE_ANDROID_NATIVE_LIB_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
531 \ CMAKE_ANDROID_NDK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
532 \ CMAKE_ANDROID_NDK_DEPRECATED_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
533 \ CMAKE_ANDROID_NDK_TOOLCHAIN_HOST_TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
534 \ CMAKE_ANDROID_NDK_TOOLCHAIN_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
535 \ CMAKE_ANDROID_NDK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
536 \ CMAKE_ANDROID_PROCESS_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
537 \ CMAKE_ANDROID_PROGUARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
538 \ CMAKE_ANDROID_PROGUARD_CONFIG_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
539 \ CMAKE_ANDROID_RTTI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
540 \ CMAKE_ANDROID_SECURE_PROPS_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
541 \ CMAKE_ANDROID_SKIP_ANT_STEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
542 \ CMAKE_ANDROID_STANDALONE_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
543 \ CMAKE_ANDROID_STL_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
544 \ CMAKE_APPBUNDLE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
545 \ CMAKE_APPLE_SILICON_PROCESSOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
546 \ CMAKE_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
547 \ CMAKE_ARCHIVE_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
548 \ CMAKE_ARGC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
549 \ CMAKE_ARGV0
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
550 \ CMAKE_ASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
551 \ CMAKE_ASM_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
552 \ CMAKE_ASM_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
553 \ CMAKE_ASM_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
554 \ CMAKE_ASM_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
555 \ CMAKE_ASM_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
556 \ CMAKE_ASM_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
557 \ CMAKE_ASM_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
558 \ CMAKE_ASM_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
559 \ CMAKE_ASM_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
560 \ CMAKE_ASM_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
561 \ CMAKE_ASM_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
562 \ CMAKE_ASM_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
563 \ CMAKE_ASM_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
564 \ CMAKE_ASM_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
565 \ CMAKE_ASM_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
566 \ CMAKE_ASM_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
567 \ CMAKE_ASM_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
568 \ CMAKE_ASM_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
569 \ CMAKE_ASM_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
570 \ CMAKE_ASM_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
571 \ CMAKE_ASM_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
572 \ CMAKE_ASM_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
573 \ CMAKE_ASM_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
574 \ CMAKE_ASM_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
575 \ CMAKE_ASM_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
576 \ CMAKE_ASM_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
577 \ CMAKE_ASM_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
578 \ CMAKE_ASM_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
579 \ CMAKE_ASM_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
580 \ CMAKE_ASM_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
581 \ CMAKE_ASM_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
582 \ CMAKE_ASM_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
583 \ CMAKE_ASM_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
584 \ CMAKE_ASM_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
585 \ CMAKE_ASM_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
586 \ CMAKE_ASM_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
587 \ CMAKE_ASM_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
588 \ CMAKE_ASM_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
589 \ CMAKE_ASM_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
590 \ CMAKE_ASM_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
591 \ CMAKE_ASM_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
592 \ CMAKE_ASM_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
593 \ CMAKE_ASM_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
594 \ CMAKE_ASM_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
595 \ CMAKE_ASM_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
596 \ CMAKE_ASM_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
597 \ CMAKE_ASM_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
598 \ CMAKE_ASM_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
599 \ CMAKE_ASM_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
600 \ CMAKE_ASM_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
601 \ CMAKE_ASM_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
602 \ CMAKE_ASM_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
603 \ CMAKE_ASM_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
604 \ CMAKE_ASM_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
605 \ CMAKE_ASM_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
606 \ CMAKE_ASM_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
607 \ CMAKE_ASM_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
608 \ CMAKE_ASM_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
609 \ CMAKE_ASM_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
610 \ CMAKE_ASM_MASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
611 \ CMAKE_ASM_MASM_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
612 \ CMAKE_ASM_MASM_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
613 \ CMAKE_ASM_MASM_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
614 \ CMAKE_ASM_MASM_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
615 \ CMAKE_ASM_MASM_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
616 \ CMAKE_ASM_MASM_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
617 \ CMAKE_ASM_MASM_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
618 \ CMAKE_ASM_MASM_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
619 \ CMAKE_ASM_MASM_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
620 \ CMAKE_ASM_MASM_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
621 \ CMAKE_ASM_MASM_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
622 \ CMAKE_ASM_MASM_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
623 \ CMAKE_ASM_MASM_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
624 \ CMAKE_ASM_MASM_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
625 \ CMAKE_ASM_MASM_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
626 \ CMAKE_ASM_MASM_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
627 \ CMAKE_ASM_MASM_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
628 \ CMAKE_ASM_MASM_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
629 \ CMAKE_ASM_MASM_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
630 \ CMAKE_ASM_MASM_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
631 \ CMAKE_ASM_MASM_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
632 \ CMAKE_ASM_MASM_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
633 \ CMAKE_ASM_MASM_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
634 \ CMAKE_ASM_MASM_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
635 \ CMAKE_ASM_MASM_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
636 \ CMAKE_ASM_MASM_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
637 \ CMAKE_ASM_MASM_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
638 \ CMAKE_ASM_MASM_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
639 \ CMAKE_ASM_MASM_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
640 \ CMAKE_ASM_MASM_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
641 \ CMAKE_ASM_MASM_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
642 \ CMAKE_ASM_MASM_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
643 \ CMAKE_ASM_MASM_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
644 \ CMAKE_ASM_MASM_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
645 \ CMAKE_ASM_MASM_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
646 \ CMAKE_ASM_MASM_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
647 \ CMAKE_ASM_MASM_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
648 \ CMAKE_ASM_MASM_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
649 \ CMAKE_ASM_MASM_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
650 \ CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
651 \ CMAKE_ASM_MASM_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
652 \ CMAKE_ASM_MASM_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
653 \ CMAKE_ASM_MASM_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
654 \ CMAKE_ASM_MASM_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
655 \ CMAKE_ASM_MASM_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
656 \ CMAKE_ASM_MASM_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
657 \ CMAKE_ASM_MASM_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
658 \ CMAKE_ASM_MASM_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
659 \ CMAKE_ASM_MASM_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
660 \ CMAKE_ASM_MASM_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
661 \ CMAKE_ASM_MASM_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
662 \ CMAKE_ASM_MASM_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
663 \ CMAKE_ASM_MASM_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
664 \ CMAKE_ASM_MASM_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
665 \ CMAKE_ASM_MASM_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
666 \ CMAKE_ASM_MASM_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
667 \ CMAKE_ASM_MASM_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
668 \ CMAKE_ASM_MASM_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
669 \ CMAKE_ASM_MASM_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
670 \ CMAKE_ASM_MASM_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
671 \ CMAKE_ASM_MASM_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
672 \ CMAKE_ASM_MASM_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
673 \ CMAKE_ASM_MASM_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
674 \ CMAKE_ASM_MASM_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
675 \ CMAKE_ASM_MASM_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
676 \ CMAKE_ASM_MASM_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
677 \ CMAKE_ASM_MASM_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
678 \ CMAKE_ASM_MASM_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
679 \ CMAKE_ASM_MASM_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
680 \ CMAKE_ASM_MASM_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
681 \ CMAKE_ASM_MASM_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
682 \ CMAKE_ASM_MASM_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
683 \ CMAKE_ASM_NASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
684 \ CMAKE_ASM_NASM_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
685 \ CMAKE_ASM_NASM_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
686 \ CMAKE_ASM_NASM_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
687 \ CMAKE_ASM_NASM_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
688 \ CMAKE_ASM_NASM_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
689 \ CMAKE_ASM_NASM_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
690 \ CMAKE_ASM_NASM_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
691 \ CMAKE_ASM_NASM_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
692 \ CMAKE_ASM_NASM_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
693 \ CMAKE_ASM_NASM_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
694 \ CMAKE_ASM_NASM_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
695 \ CMAKE_ASM_NASM_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
696 \ CMAKE_ASM_NASM_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
697 \ CMAKE_ASM_NASM_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
698 \ CMAKE_ASM_NASM_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
699 \ CMAKE_ASM_NASM_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
700 \ CMAKE_ASM_NASM_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
701 \ CMAKE_ASM_NASM_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
702 \ CMAKE_ASM_NASM_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
703 \ CMAKE_ASM_NASM_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
704 \ CMAKE_ASM_NASM_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
705 \ CMAKE_ASM_NASM_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
706 \ CMAKE_ASM_NASM_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
707 \ CMAKE_ASM_NASM_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
708 \ CMAKE_ASM_NASM_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
709 \ CMAKE_ASM_NASM_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
710 \ CMAKE_ASM_NASM_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
711 \ CMAKE_ASM_NASM_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
712 \ CMAKE_ASM_NASM_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
713 \ CMAKE_ASM_NASM_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
714 \ CMAKE_ASM_NASM_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
715 \ CMAKE_ASM_NASM_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
716 \ CMAKE_ASM_NASM_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
717 \ CMAKE_ASM_NASM_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
718 \ CMAKE_ASM_NASM_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
719 \ CMAKE_ASM_NASM_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
720 \ CMAKE_ASM_NASM_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
721 \ CMAKE_ASM_NASM_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
722 \ CMAKE_ASM_NASM_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
723 \ CMAKE_ASM_NASM_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
724 \ CMAKE_ASM_NASM_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
725 \ CMAKE_ASM_NASM_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
726 \ CMAKE_ASM_NASM_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
727 \ CMAKE_ASM_NASM_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
728 \ CMAKE_ASM_NASM_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
729 \ CMAKE_ASM_NASM_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
730 \ CMAKE_ASM_NASM_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
731 \ CMAKE_ASM_NASM_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
732 \ CMAKE_ASM_NASM_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
733 \ CMAKE_ASM_NASM_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
734 \ CMAKE_ASM_NASM_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
735 \ CMAKE_ASM_NASM_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
736 \ CMAKE_ASM_NASM_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
737 \ CMAKE_ASM_NASM_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
738 \ CMAKE_ASM_NASM_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
739 \ CMAKE_ASM_NASM_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
740 \ CMAKE_ASM_NASM_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
741 \ CMAKE_ASM_NASM_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
742 \ CMAKE_ASM_NASM_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
743 \ CMAKE_ASM_NASM_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
744 \ CMAKE_ASM_NASM_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
745 \ CMAKE_ASM_NASM_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
746 \ CMAKE_ASM_NASM_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
747 \ CMAKE_ASM_NASM_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
748 \ CMAKE_ASM_NASM_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
749 \ CMAKE_ASM_NASM_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
750 \ CMAKE_ASM_NASM_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
751 \ CMAKE_ASM_NASM_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
752 \ CMAKE_ASM_NASM_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
753 \ CMAKE_ASM_NASM_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
754 \ CMAKE_ASM_NASM_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
755 \ CMAKE_ASM_NASM_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
756 \ CMAKE_ASM_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
757 \ CMAKE_ASM_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
758 \ CMAKE_ASM_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
759 \ CMAKE_ASM_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
760 \ CMAKE_ASM_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
761 \ CMAKE_ASM_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
762 \ CMAKE_ASM_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
763 \ CMAKE_ASM_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
764 \ CMAKE_ASM_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
765 \ CMAKE_ASM_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
766 \ CMAKE_ASM_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
767 \ CMAKE_ASM_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
768 \ CMAKE_ASM_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
769 \ CMAKE_AUTOGEN_COMMAND_LINE_LENGTH_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
770 \ CMAKE_AUTOGEN_ORIGIN_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
771 \ CMAKE_AUTOGEN_PARALLEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
772 \ CMAKE_AUTOGEN_USE_SYSTEM_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
773 \ CMAKE_AUTOGEN_VERBOSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
774 \ CMAKE_AUTOMOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
775 \ CMAKE_AUTOMOC_COMPILER_PREDEFINES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
776 \ CMAKE_AUTOMOC_DEPEND_FILTERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
777 \ CMAKE_AUTOMOC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
778 \ CMAKE_AUTOMOC_MACRO_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
779 \ CMAKE_AUTOMOC_MOC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
780 \ CMAKE_AUTOMOC_PATH_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
781 \ CMAKE_AUTOMOC_RELAXED_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
782 \ CMAKE_AUTOMOC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
783 \ CMAKE_AUTORCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
784 \ CMAKE_AUTORCC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
785 \ CMAKE_AUTORCC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
786 \ CMAKE_AUTORCC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
787 \ CMAKE_AUTOUIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
788 \ CMAKE_AUTOUIC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
789 \ CMAKE_AUTOUIC_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
790 \ CMAKE_AUTOUIC_SEARCH_PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
791 \ CMAKE_AUTOUIC_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
792 \ CMAKE_BACKWARDS_COMPATIBILITY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
793 \ CMAKE_BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
794 \ CMAKE_BUILD_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
795 \ CMAKE_BUILD_RPATH_USE_ORIGIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
796 \ CMAKE_BUILD_TOOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
797 \ CMAKE_BUILD_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
798 \ CMAKE_BUILD_WITH_INSTALL_NAME_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
799 \ CMAKE_BUILD_WITH_INSTALL_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
800 \ CMAKE_C
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
801 \ CMAKE_CACHEFILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
802 \ CMAKE_CACHE_MAJOR_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
803 \ CMAKE_CACHE_MINOR_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
804 \ CMAKE_CACHE_PATCH_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
805 \ CMAKE_CFG_INTDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
806 \ CMAKE_CLANG_VFS_OVERLAY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
807 \ CMAKE_CL_64
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
808 \ CMAKE_CODEBLOCKS_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
809 \ CMAKE_CODEBLOCKS_EXCLUDE_EXTERNAL_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
810 \ CMAKE_CODELITE_USE_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
811 \ CMAKE_COLOR_DIAGNOSTICS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
812 \ CMAKE_COLOR_MAKEFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
813 \ CMAKE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
814 \ CMAKE_COMPILER_2005
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
815 \ CMAKE_COMPILER_IS_GNUCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
816 \ CMAKE_COMPILER_IS_GNUCXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
817 \ CMAKE_COMPILER_IS_GNUG77
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
818 \ CMAKE_COMPILE_PDB_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
819 \ CMAKE_COMPILE_WARNING_AS_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
820 \ CMAKE_CONFIGURATION_TYPES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
821 \ CMAKE_CPACK_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
822 \ CMAKE_CROSSCOMPILING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
823 \ CMAKE_CROSSCOMPILING_EMULATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
824 \ CMAKE_CROSS_CONFIGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
825 \ CMAKE_CSharp
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
826 \ CMAKE_CSharp_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
827 \ CMAKE_CSharp_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
828 \ CMAKE_CSharp_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
829 \ CMAKE_CSharp_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
830 \ CMAKE_CSharp_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
831 \ CMAKE_CSharp_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
832 \ CMAKE_CSharp_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
833 \ CMAKE_CSharp_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
834 \ CMAKE_CSharp_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
835 \ CMAKE_CSharp_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
836 \ CMAKE_CSharp_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
837 \ CMAKE_CSharp_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
838 \ CMAKE_CSharp_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
839 \ CMAKE_CSharp_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
840 \ CMAKE_CSharp_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
841 \ CMAKE_CSharp_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
842 \ CMAKE_CSharp_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
843 \ CMAKE_CSharp_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
844 \ CMAKE_CSharp_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
845 \ CMAKE_CSharp_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
846 \ CMAKE_CSharp_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
847 \ CMAKE_CSharp_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
848 \ CMAKE_CSharp_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
849 \ CMAKE_CSharp_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
850 \ CMAKE_CSharp_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
851 \ CMAKE_CSharp_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
852 \ CMAKE_CSharp_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
853 \ CMAKE_CSharp_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
854 \ CMAKE_CSharp_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
855 \ CMAKE_CSharp_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
856 \ CMAKE_CSharp_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
857 \ CMAKE_CSharp_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
858 \ CMAKE_CSharp_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
859 \ CMAKE_CSharp_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
860 \ CMAKE_CSharp_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
861 \ CMAKE_CSharp_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
862 \ CMAKE_CSharp_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
863 \ CMAKE_CSharp_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
864 \ CMAKE_CSharp_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
865 \ CMAKE_CSharp_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
866 \ CMAKE_CSharp_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
867 \ CMAKE_CSharp_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
868 \ CMAKE_CSharp_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
869 \ CMAKE_CSharp_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
870 \ CMAKE_CSharp_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
871 \ CMAKE_CSharp_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
872 \ CMAKE_CSharp_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
873 \ CMAKE_CSharp_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
874 \ CMAKE_CSharp_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
875 \ CMAKE_CSharp_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
876 \ CMAKE_CSharp_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
877 \ CMAKE_CSharp_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
878 \ CMAKE_CSharp_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
879 \ CMAKE_CSharp_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
880 \ CMAKE_CSharp_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
881 \ CMAKE_CSharp_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
882 \ CMAKE_CSharp_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
883 \ CMAKE_CSharp_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
884 \ CMAKE_CSharp_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
885 \ CMAKE_CSharp_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
886 \ CMAKE_CSharp_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
887 \ CMAKE_CSharp_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
888 \ CMAKE_CSharp_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
889 \ CMAKE_CSharp_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
890 \ CMAKE_CSharp_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
891 \ CMAKE_CSharp_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
892 \ CMAKE_CSharp_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
893 \ CMAKE_CSharp_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
894 \ CMAKE_CSharp_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
895 \ CMAKE_CSharp_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
896 \ CMAKE_CSharp_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
897 \ CMAKE_CSharp_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
898 \ CMAKE_CTEST_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
899 \ CMAKE_CTEST_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
900 \ CMAKE_CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
901 \ CMAKE_CUDA_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
902 \ CMAKE_CUDA_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
903 \ CMAKE_CUDA_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
904 \ CMAKE_CUDA_ARCHITECTURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
905 \ CMAKE_CUDA_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
906 \ CMAKE_CUDA_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
907 \ CMAKE_CUDA_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
908 \ CMAKE_CUDA_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
909 \ CMAKE_CUDA_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
910 \ CMAKE_CUDA_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
911 \ CMAKE_CUDA_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
912 \ CMAKE_CUDA_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
913 \ CMAKE_CUDA_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
914 \ CMAKE_CUDA_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
915 \ CMAKE_CUDA_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
916 \ CMAKE_CUDA_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
917 \ CMAKE_CUDA_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
918 \ CMAKE_CUDA_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
919 \ CMAKE_CUDA_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
920 \ CMAKE_CUDA_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
921 \ CMAKE_CUDA_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
922 \ CMAKE_CUDA_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
923 \ CMAKE_CUDA_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
924 \ CMAKE_CUDA_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
925 \ CMAKE_CUDA_COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
926 \ CMAKE_CUDA_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
927 \ CMAKE_CUDA_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
928 \ CMAKE_CUDA_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
929 \ CMAKE_CUDA_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
930 \ CMAKE_CUDA_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
931 \ CMAKE_CUDA_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
932 \ CMAKE_CUDA_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
933 \ CMAKE_CUDA_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
934 \ CMAKE_CUDA_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
935 \ CMAKE_CUDA_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
936 \ CMAKE_CUDA_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
937 \ CMAKE_CUDA_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
938 \ CMAKE_CUDA_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
939 \ CMAKE_CUDA_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
940 \ CMAKE_CUDA_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
941 \ CMAKE_CUDA_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
942 \ CMAKE_CUDA_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
943 \ CMAKE_CUDA_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
944 \ CMAKE_CUDA_HOST_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
945 \ CMAKE_CUDA_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
946 \ CMAKE_CUDA_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
947 \ CMAKE_CUDA_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
948 \ CMAKE_CUDA_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
949 \ CMAKE_CUDA_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
950 \ CMAKE_CUDA_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
951 \ CMAKE_CUDA_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
952 \ CMAKE_CUDA_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
953 \ CMAKE_CUDA_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
954 \ CMAKE_CUDA_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
955 \ CMAKE_CUDA_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
956 \ CMAKE_CUDA_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
957 \ CMAKE_CUDA_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
958 \ CMAKE_CUDA_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
959 \ CMAKE_CUDA_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
960 \ CMAKE_CUDA_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
961 \ CMAKE_CUDA_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
962 \ CMAKE_CUDA_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
963 \ CMAKE_CUDA_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
964 \ CMAKE_CUDA_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
965 \ CMAKE_CUDA_RESOLVE_DEVICE_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
966 \ CMAKE_CUDA_RUNTIME_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
967 \ CMAKE_CUDA_SEPARABLE_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
968 \ CMAKE_CUDA_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
969 \ CMAKE_CUDA_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
970 \ CMAKE_CUDA_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
971 \ CMAKE_CUDA_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
972 \ CMAKE_CUDA_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
973 \ CMAKE_CUDA_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
974 \ CMAKE_CUDA_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
975 \ CMAKE_CUDA_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
976 \ CMAKE_CUDA_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
977 \ CMAKE_CUDA_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
978 \ CMAKE_CUDA_TOOLKIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
979 \ CMAKE_CUDA_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
980 \ CMAKE_CURRENT_BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
981 \ CMAKE_CURRENT_FUNCTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
982 \ CMAKE_CURRENT_FUNCTION_LIST_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
983 \ CMAKE_CURRENT_FUNCTION_LIST_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
984 \ CMAKE_CURRENT_FUNCTION_LIST_LINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
985 \ CMAKE_CURRENT_LIST_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
986 \ CMAKE_CURRENT_LIST_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
987 \ CMAKE_CURRENT_LIST_LINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
988 \ CMAKE_CURRENT_SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
989 \ CMAKE_CXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
990 \ CMAKE_CXX_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
991 \ CMAKE_CXX_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
992 \ CMAKE_CXX_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
993 \ CMAKE_CXX_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
994 \ CMAKE_CXX_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
995 \ CMAKE_CXX_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
996 \ CMAKE_CXX_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
997 \ CMAKE_CXX_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
998 \ CMAKE_CXX_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
999 \ CMAKE_CXX_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1000 \ CMAKE_CXX_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1001 \ CMAKE_CXX_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1002 \ CMAKE_CXX_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1003 \ CMAKE_CXX_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1004 \ CMAKE_CXX_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1005 \ CMAKE_CXX_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1006 \ CMAKE_CXX_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1007 \ CMAKE_CXX_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1008 \ CMAKE_CXX_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1009 \ CMAKE_CXX_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1010 \ CMAKE_CXX_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1011 \ CMAKE_CXX_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1012 \ CMAKE_CXX_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1013 \ CMAKE_CXX_COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1014 \ CMAKE_CXX_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1015 \ CMAKE_CXX_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1016 \ CMAKE_CXX_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1017 \ CMAKE_CXX_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1018 \ CMAKE_CXX_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1019 \ CMAKE_CXX_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1020 \ CMAKE_CXX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1021 \ CMAKE_CXX_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1022 \ CMAKE_CXX_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1023 \ CMAKE_CXX_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1024 \ CMAKE_CXX_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1025 \ CMAKE_CXX_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1026 \ CMAKE_CXX_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1027 \ CMAKE_CXX_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1028 \ CMAKE_CXX_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1029 \ CMAKE_CXX_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1030 \ CMAKE_CXX_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1031 \ CMAKE_CXX_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1032 \ CMAKE_CXX_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1033 \ CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1034 \ CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1035 \ CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1036 \ CMAKE_CXX_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1037 \ CMAKE_CXX_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1038 \ CMAKE_CXX_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1039 \ CMAKE_CXX_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1040 \ CMAKE_CXX_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1041 \ CMAKE_CXX_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1042 \ CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1043 \ CMAKE_CXX_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1044 \ CMAKE_CXX_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1045 \ CMAKE_CXX_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1046 \ CMAKE_CXX_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1047 \ CMAKE_CXX_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1048 \ CMAKE_CXX_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1049 \ CMAKE_CXX_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1050 \ CMAKE_CXX_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1051 \ CMAKE_CXX_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1052 \ CMAKE_CXX_SCAN_FOR_MODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1053 \ CMAKE_CXX_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1054 \ CMAKE_CXX_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1055 \ CMAKE_CXX_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1056 \ CMAKE_CXX_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1057 \ CMAKE_CXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1058 \ CMAKE_CXX_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1059 \ CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1060 \ CMAKE_CXX_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1061 \ CMAKE_CXX_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1062 \ CMAKE_CXX_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1063 \ CMAKE_CXX_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1064 \ CMAKE_C_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1065 \ CMAKE_C_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1066 \ CMAKE_C_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1067 \ CMAKE_C_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1068 \ CMAKE_C_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1069 \ CMAKE_C_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1070 \ CMAKE_C_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1071 \ CMAKE_C_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1072 \ CMAKE_C_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1073 \ CMAKE_C_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1074 \ CMAKE_C_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1075 \ CMAKE_C_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1076 \ CMAKE_C_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1077 \ CMAKE_C_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1078 \ CMAKE_C_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1079 \ CMAKE_C_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1080 \ CMAKE_C_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1081 \ CMAKE_C_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1082 \ CMAKE_C_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1083 \ CMAKE_C_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1084 \ CMAKE_C_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1085 \ CMAKE_C_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1086 \ CMAKE_C_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1087 \ CMAKE_C_COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1088 \ CMAKE_C_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1089 \ CMAKE_C_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1090 \ CMAKE_C_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1091 \ CMAKE_C_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1092 \ CMAKE_C_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1093 \ CMAKE_C_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1094 \ CMAKE_C_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1095 \ CMAKE_C_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1096 \ CMAKE_C_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1097 \ CMAKE_C_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1098 \ CMAKE_C_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1099 \ CMAKE_C_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1100 \ CMAKE_C_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1101 \ CMAKE_C_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1102 \ CMAKE_C_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1103 \ CMAKE_C_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1104 \ CMAKE_C_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1105 \ CMAKE_C_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1106 \ CMAKE_C_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1107 \ CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1108 \ CMAKE_C_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1109 \ CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1110 \ CMAKE_C_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1111 \ CMAKE_C_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1112 \ CMAKE_C_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1113 \ CMAKE_C_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1114 \ CMAKE_C_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1115 \ CMAKE_C_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1116 \ CMAKE_C_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1117 \ CMAKE_C_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1118 \ CMAKE_C_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1119 \ CMAKE_C_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1120 \ CMAKE_C_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1121 \ CMAKE_C_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1122 \ CMAKE_C_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1123 \ CMAKE_C_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1124 \ CMAKE_C_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1125 \ CMAKE_C_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1126 \ CMAKE_C_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1127 \ CMAKE_C_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1128 \ CMAKE_C_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1129 \ CMAKE_C_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1130 \ CMAKE_C_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1131 \ CMAKE_C_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1132 \ CMAKE_C_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1133 \ CMAKE_C_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1134 \ CMAKE_C_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1135 \ CMAKE_C_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1136 \ CMAKE_C_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1137 \ CMAKE_DEBUG_POSTFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1138 \ CMAKE_DEBUG_TARGET_PROPERTIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1139 \ CMAKE_DEFAULT_BUILD_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1140 \ CMAKE_DEFAULT_CONFIGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1141 \ CMAKE_DEPENDS_IN_PROJECT_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1142 \ CMAKE_DEPENDS_USE_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1143 \ CMAKE_DIRECTORY_LABELS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1144 \ CMAKE_DISABLE_PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1145 \ CMAKE_DLL_NAME_WITH_SOVERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1146 \ CMAKE_DL_LIBS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1147 \ CMAKE_DOTNET_SDK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1148 \ CMAKE_DOTNET_TARGET_FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1149 \ CMAKE_DOTNET_TARGET_FRAMEWORK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1150 \ CMAKE_ECLIPSE_GENERATE_LINKED_RESOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1151 \ CMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1152 \ CMAKE_ECLIPSE_MAKE_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1153 \ CMAKE_ECLIPSE_RESOURCE_ENCODING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1154 \ CMAKE_ECLIPSE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1155 \ CMAKE_EDIT_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1156 \ CMAKE_ENABLE_EXPORTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1157 \ CMAKE_ERROR_DEPRECATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1158 \ CMAKE_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1159 \ CMAKE_EXECUTABLE_ENABLE_EXPORTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1160 \ CMAKE_EXECUTABLE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1161 \ CMAKE_EXECUTABLE_SUFFIX_ASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1162 \ CMAKE_EXECUTABLE_SUFFIX_ASM_MASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1163 \ CMAKE_EXECUTABLE_SUFFIX_ASM_NASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1164 \ CMAKE_EXECUTABLE_SUFFIX_C
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1165 \ CMAKE_EXECUTABLE_SUFFIX_CSharp
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1166 \ CMAKE_EXECUTABLE_SUFFIX_CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1167 \ CMAKE_EXECUTABLE_SUFFIX_CXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1168 \ CMAKE_EXECUTABLE_SUFFIX_Fortran
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1169 \ CMAKE_EXECUTABLE_SUFFIX_HIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1170 \ CMAKE_EXECUTABLE_SUFFIX_Java
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1171 \ CMAKE_EXECUTABLE_SUFFIX_RC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1172 \ CMAKE_EXECUTABLE_SUFFIX_Swift
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1173 \ CMAKE_EXECUTE_PROCESS_COMMAND_ECHO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1174 \ CMAKE_EXE_LINKER_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1175 \ CMAKE_EXE_LINKER_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1176 \ CMAKE_EXPORT_COMPILE_COMMANDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1177 \ CMAKE_EXPORT_NO_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1178 \ CMAKE_EXPORT_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1179 \ CMAKE_EXTRA_GENERATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1180 \ CMAKE_EXTRA_SHARED_LIBRARY_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1181 \ CMAKE_FIND_APPBUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1182 \ CMAKE_FIND_DEBUG_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1183 \ CMAKE_FIND_FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1184 \ CMAKE_FIND_LIBRARY_CUSTOM_LIB_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1185 \ CMAKE_FIND_LIBRARY_PREFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1186 \ CMAKE_FIND_LIBRARY_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1187 \ CMAKE_FIND_NO_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1188 \ CMAKE_FIND_PACKAGE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1189 \ CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1190 \ CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1191 \ CMAKE_FIND_PACKAGE_PREFER_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1192 \ CMAKE_FIND_PACKAGE_REDIRECTS_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1193 \ CMAKE_FIND_PACKAGE_RESOLVE_SYMLINKS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1194 \ CMAKE_FIND_PACKAGE_SORT_DIRECTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1195 \ CMAKE_FIND_PACKAGE_SORT_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1196 \ CMAKE_FIND_PACKAGE_TARGETS_GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1197 \ CMAKE_FIND_PACKAGE_WARN_NO_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1198 \ CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1199 \ CMAKE_FIND_ROOT_PATH_MODE_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1200 \ CMAKE_FIND_ROOT_PATH_MODE_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1201 \ CMAKE_FIND_ROOT_PATH_MODE_PACKAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1202 \ CMAKE_FIND_ROOT_PATH_MODE_PROGRAM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1203 \ CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1204 \ CMAKE_FIND_USE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1205 \ CMAKE_FIND_USE_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1206 \ CMAKE_FIND_USE_CMAKE_SYSTEM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1207 \ CMAKE_FIND_USE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1208 \ CMAKE_FIND_USE_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1209 \ CMAKE_FIND_USE_PACKAGE_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1210 \ CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1211 \ CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1212 \ CMAKE_FOLDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1213 \ CMAKE_FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1214 \ CMAKE_FRAMEWORK_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1215 \ CMAKE_Fortran
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1216 \ CMAKE_Fortran_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1217 \ CMAKE_Fortran_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1218 \ CMAKE_Fortran_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1219 \ CMAKE_Fortran_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1220 \ CMAKE_Fortran_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1221 \ CMAKE_Fortran_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1222 \ CMAKE_Fortran_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1223 \ CMAKE_Fortran_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1224 \ CMAKE_Fortran_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1225 \ CMAKE_Fortran_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1226 \ CMAKE_Fortran_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1227 \ CMAKE_Fortran_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1228 \ CMAKE_Fortran_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1229 \ CMAKE_Fortran_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1230 \ CMAKE_Fortran_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1231 \ CMAKE_Fortran_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1232 \ CMAKE_Fortran_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1233 \ CMAKE_Fortran_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1234 \ CMAKE_Fortran_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1235 \ CMAKE_Fortran_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1236 \ CMAKE_Fortran_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1237 \ CMAKE_Fortran_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1238 \ CMAKE_Fortran_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1239 \ CMAKE_Fortran_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1240 \ CMAKE_Fortran_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1241 \ CMAKE_Fortran_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1242 \ CMAKE_Fortran_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1243 \ CMAKE_Fortran_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1244 \ CMAKE_Fortran_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1245 \ CMAKE_Fortran_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1246 \ CMAKE_Fortran_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1247 \ CMAKE_Fortran_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1248 \ CMAKE_Fortran_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1249 \ CMAKE_Fortran_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1250 \ CMAKE_Fortran_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1251 \ CMAKE_Fortran_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1252 \ CMAKE_Fortran_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1253 \ CMAKE_Fortran_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1254 \ CMAKE_Fortran_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1255 \ CMAKE_Fortran_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1256 \ CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1257 \ CMAKE_Fortran_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1258 \ CMAKE_Fortran_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1259 \ CMAKE_Fortran_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1260 \ CMAKE_Fortran_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1261 \ CMAKE_Fortran_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1262 \ CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1263 \ CMAKE_Fortran_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1264 \ CMAKE_Fortran_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1265 \ CMAKE_Fortran_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1266 \ CMAKE_Fortran_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1267 \ CMAKE_Fortran_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1268 \ CMAKE_Fortran_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1269 \ CMAKE_Fortran_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1270 \ CMAKE_Fortran_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1271 \ CMAKE_Fortran_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1272 \ CMAKE_Fortran_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1273 \ CMAKE_Fortran_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1274 \ CMAKE_Fortran_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1275 \ CMAKE_Fortran_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1276 \ CMAKE_Fortran_MODDIR_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1277 \ CMAKE_Fortran_MODDIR_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1278 \ CMAKE_Fortran_MODOUT_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1279 \ CMAKE_Fortran_MODULE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1280 \ CMAKE_Fortran_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1281 \ CMAKE_Fortran_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1282 \ CMAKE_Fortran_PREPROCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1283 \ CMAKE_Fortran_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1284 \ CMAKE_Fortran_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1285 \ CMAKE_Fortran_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1286 \ CMAKE_Fortran_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1287 \ CMAKE_Fortran_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1288 \ CMAKE_Fortran_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1289 \ CMAKE_Fortran_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1290 \ CMAKE_Fortran_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1291 \ CMAKE_Fortran_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1292 \ CMAKE_Fortran_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1293 \ CMAKE_Fortran_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1294 \ CMAKE_GENERATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1295 \ CMAKE_GENERATOR_INSTANCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1296 \ CMAKE_GENERATOR_PLATFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1297 \ CMAKE_GENERATOR_TOOLSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1298 \ CMAKE_GHS_NO_SOURCE_GROUP_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1299 \ CMAKE_GLOBAL_AUTOGEN_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1300 \ CMAKE_GLOBAL_AUTOGEN_TARGET_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1301 \ CMAKE_GLOBAL_AUTORCC_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1302 \ CMAKE_GLOBAL_AUTORCC_TARGET_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1303 \ CMAKE_GNUtoMS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1304 \ CMAKE_HIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1305 \ CMAKE_HIP_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1306 \ CMAKE_HIP_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1307 \ CMAKE_HIP_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1308 \ CMAKE_HIP_ARCHITECTURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1309 \ CMAKE_HIP_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1310 \ CMAKE_HIP_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1311 \ CMAKE_HIP_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1312 \ CMAKE_HIP_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1313 \ CMAKE_HIP_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1314 \ CMAKE_HIP_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1315 \ CMAKE_HIP_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1316 \ CMAKE_HIP_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1317 \ CMAKE_HIP_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1318 \ CMAKE_HIP_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1319 \ CMAKE_HIP_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1320 \ CMAKE_HIP_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1321 \ CMAKE_HIP_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1322 \ CMAKE_HIP_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1323 \ CMAKE_HIP_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1324 \ CMAKE_HIP_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1325 \ CMAKE_HIP_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1326 \ CMAKE_HIP_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1327 \ CMAKE_HIP_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1328 \ CMAKE_HIP_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1329 \ CMAKE_HIP_COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1330 \ CMAKE_HIP_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1331 \ CMAKE_HIP_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1332 \ CMAKE_HIP_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1333 \ CMAKE_HIP_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1334 \ CMAKE_HIP_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1335 \ CMAKE_HIP_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1336 \ CMAKE_HIP_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1337 \ CMAKE_HIP_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1338 \ CMAKE_HIP_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1339 \ CMAKE_HIP_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1340 \ CMAKE_HIP_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1341 \ CMAKE_HIP_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1342 \ CMAKE_HIP_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1343 \ CMAKE_HIP_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1344 \ CMAKE_HIP_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1345 \ CMAKE_HIP_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1346 \ CMAKE_HIP_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1347 \ CMAKE_HIP_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1348 \ CMAKE_HIP_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1349 \ CMAKE_HIP_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1350 \ CMAKE_HIP_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1351 \ CMAKE_HIP_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1352 \ CMAKE_HIP_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1353 \ CMAKE_HIP_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1354 \ CMAKE_HIP_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1355 \ CMAKE_HIP_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1356 \ CMAKE_HIP_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1357 \ CMAKE_HIP_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1358 \ CMAKE_HIP_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1359 \ CMAKE_HIP_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1360 \ CMAKE_HIP_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1361 \ CMAKE_HIP_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1362 \ CMAKE_HIP_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1363 \ CMAKE_HIP_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1364 \ CMAKE_HIP_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1365 \ CMAKE_HIP_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1366 \ CMAKE_HIP_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1367 \ CMAKE_HIP_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1368 \ CMAKE_HIP_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1369 \ CMAKE_HIP_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1370 \ CMAKE_HIP_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1371 \ CMAKE_HIP_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1372 \ CMAKE_HIP_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1373 \ CMAKE_HIP_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1374 \ CMAKE_HIP_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1375 \ CMAKE_HIP_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1376 \ CMAKE_HIP_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1377 \ CMAKE_HIP_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1378 \ CMAKE_HIP_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1379 \ CMAKE_HOME_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1380 \ CMAKE_HOST_APPLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1381 \ CMAKE_HOST_BSD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1382 \ CMAKE_HOST_LINUX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1383 \ CMAKE_HOST_SOLARIS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1384 \ CMAKE_HOST_SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1385 \ CMAKE_HOST_SYSTEM_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1386 \ CMAKE_HOST_SYSTEM_PROCESSOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1387 \ CMAKE_HOST_SYSTEM_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1388 \ CMAKE_HOST_UNIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1389 \ CMAKE_HOST_WIN32
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1390 \ CMAKE_IGNORE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1391 \ CMAKE_IGNORE_PREFIX_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1392 \ CMAKE_IMPORT_LIBRARY_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1393 \ CMAKE_IMPORT_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1394 \ CMAKE_INCLUDE_CURRENT_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1395 \ CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1396 \ CMAKE_INCLUDE_DIRECTORIES_BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1397 \ CMAKE_INCLUDE_DIRECTORIES_PROJECT_BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1398 \ CMAKE_INCLUDE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1399 \ CMAKE_INSTALL_DEFAULT_COMPONENT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1400 \ CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1401 \ CMAKE_INSTALL_MESSAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1402 \ CMAKE_INSTALL_NAME_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1403 \ CMAKE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1404 \ CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1405 \ CMAKE_INSTALL_REMOVE_ENVIRONMENT_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1406 \ CMAKE_INSTALL_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1407 \ CMAKE_INSTALL_RPATH_USE_LINK_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1408 \ CMAKE_INTERNAL_PLATFORM_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1409 \ CMAKE_INTERPROCEDURAL_OPTIMIZATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1410 \ CMAKE_IOS_INSTALL_COMBINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1411 \ CMAKE_ISPC_HEADER_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1412 \ CMAKE_ISPC_HEADER_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1413 \ CMAKE_ISPC_INSTRUCTION_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1414 \ CMAKE_JOB_POOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1415 \ CMAKE_JOB_POOL_COMPILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1416 \ CMAKE_JOB_POOL_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1417 \ CMAKE_JOB_POOL_PRECOMPILE_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1418 \ CMAKE_Java
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1419 \ CMAKE_Java_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1420 \ CMAKE_Java_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1421 \ CMAKE_Java_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1422 \ CMAKE_Java_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1423 \ CMAKE_Java_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1424 \ CMAKE_Java_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1425 \ CMAKE_Java_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1426 \ CMAKE_Java_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1427 \ CMAKE_Java_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1428 \ CMAKE_Java_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1429 \ CMAKE_Java_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1430 \ CMAKE_Java_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1431 \ CMAKE_Java_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1432 \ CMAKE_Java_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1433 \ CMAKE_Java_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1434 \ CMAKE_Java_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1435 \ CMAKE_Java_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1436 \ CMAKE_Java_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1437 \ CMAKE_Java_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1438 \ CMAKE_Java_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1439 \ CMAKE_Java_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1440 \ CMAKE_Java_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1441 \ CMAKE_Java_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1442 \ CMAKE_Java_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1443 \ CMAKE_Java_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1444 \ CMAKE_Java_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1445 \ CMAKE_Java_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1446 \ CMAKE_Java_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1447 \ CMAKE_Java_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1448 \ CMAKE_Java_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1449 \ CMAKE_Java_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1450 \ CMAKE_Java_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1451 \ CMAKE_Java_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1452 \ CMAKE_Java_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1453 \ CMAKE_Java_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1454 \ CMAKE_Java_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1455 \ CMAKE_Java_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1456 \ CMAKE_Java_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1457 \ CMAKE_Java_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1458 \ CMAKE_Java_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1459 \ CMAKE_Java_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1460 \ CMAKE_Java_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1461 \ CMAKE_Java_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1462 \ CMAKE_Java_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1463 \ CMAKE_Java_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1464 \ CMAKE_Java_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1465 \ CMAKE_Java_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1466 \ CMAKE_Java_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1467 \ CMAKE_Java_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1468 \ CMAKE_Java_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1469 \ CMAKE_Java_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1470 \ CMAKE_Java_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1471 \ CMAKE_Java_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1472 \ CMAKE_Java_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1473 \ CMAKE_Java_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1474 \ CMAKE_Java_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1475 \ CMAKE_Java_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1476 \ CMAKE_Java_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1477 \ CMAKE_Java_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1478 \ CMAKE_Java_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1479 \ CMAKE_Java_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1480 \ CMAKE_Java_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1481 \ CMAKE_Java_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1482 \ CMAKE_Java_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1483 \ CMAKE_Java_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1484 \ CMAKE_Java_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1485 \ CMAKE_Java_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1486 \ CMAKE_Java_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1487 \ CMAKE_Java_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1488 \ CMAKE_Java_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1489 \ CMAKE_Java_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1490 \ CMAKE_Java_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1491 \ CMAKE_KATE_FILES_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1492 \ CMAKE_KATE_MAKE_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1493 \ CMAKE_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1494 \ CMAKE_LIBRARY_ARCHITECTURE_REGEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1495 \ CMAKE_LIBRARY_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1496 \ CMAKE_LIBRARY_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1497 \ CMAKE_LIBRARY_PATH_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1498 \ CMAKE_LINK_DEF_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1499 \ CMAKE_LINK_DEPENDS_NO_SHARED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1500 \ CMAKE_LINK_DEPENDS_USE_LINKER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1501 \ CMAKE_LINK_DIRECTORIES_BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1502 \ CMAKE_LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1503 \ CMAKE_LINK_LIBRARIES_ONLY_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1504 \ CMAKE_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1505 \ CMAKE_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1506 \ CMAKE_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1507 \ CMAKE_LINK_SEARCH_END_STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1508 \ CMAKE_LINK_SEARCH_START_STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1509 \ CMAKE_LINK_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1510 \ CMAKE_LINK_WHAT_YOU_USE_CHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1511 \ CMAKE_MACOSX_BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1512 \ CMAKE_MACOSX_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1513 \ CMAKE_MAJOR_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1514 \ CMAKE_MAKE_PROGRAM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1515 \ CMAKE_MATCH_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1516 \ CMAKE_MAXIMUM_RECURSION_DEPTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1517 \ CMAKE_MESSAGE_CONTEXT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1518 \ CMAKE_MESSAGE_CONTEXT_SHOW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1519 \ CMAKE_MESSAGE_INDENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1520 \ CMAKE_MESSAGE_LOG_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1521 \ CMAKE_MFC_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1522 \ CMAKE_MINIMUM_REQUIRED_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1523 \ CMAKE_MINOR_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1524 \ CMAKE_MODULE_LINKER_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1525 \ CMAKE_MODULE_LINKER_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1526 \ CMAKE_MODULE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1527 \ CMAKE_MSVCIDE_RUN_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1528 \ CMAKE_MSVC_DEBUG_INFORMATION_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1529 \ CMAKE_MSVC_RUNTIME_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1530 \ CMAKE_NETRC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1531 \ CMAKE_NETRC_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1532 \ CMAKE_NINJA_OUTPUT_PATH_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1533 \ CMAKE_NOT_USING_CONFIG_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1534 \ CMAKE_NO_BUILTIN_CHRPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1535 \ CMAKE_NO_SYSTEM_FROM_IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1536 \ CMAKE_OBJCXX_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1537 \ CMAKE_OBJCXX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1538 \ CMAKE_OBJCXX_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1539 \ CMAKE_OBJCXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1540 \ CMAKE_OBJCXX_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1541 \ CMAKE_OBJC_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1542 \ CMAKE_OBJC_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1543 \ CMAKE_OBJC_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1544 \ CMAKE_OBJC_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1545 \ CMAKE_OBJC_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1546 \ CMAKE_OBJECT_PATH_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1547 \ CMAKE_OPTIMIZE_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1548 \ CMAKE_OSX_ARCHITECTURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1549 \ CMAKE_OSX_DEPLOYMENT_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1550 \ CMAKE_OSX_SYSROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1551 \ CMAKE_PARENT_LIST_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1552 \ CMAKE_PATCH_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1553 \ CMAKE_PCH_INSTANTIATE_TEMPLATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1554 \ CMAKE_PCH_WARN_INVALID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1555 \ CMAKE_PDB_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1556 \ CMAKE_PLATFORM_NO_VERSIONED_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1557 \ CMAKE_POSITION_INDEPENDENT_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1558 \ CMAKE_PREFIX_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1559 \ CMAKE_PROGRAM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1560 \ CMAKE_PROJECT_DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1561 \ CMAKE_PROJECT_HOMEPAGE_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1562 \ CMAKE_PROJECT_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1563 \ CMAKE_PROJECT_INCLUDE_BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1564 \ CMAKE_PROJECT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1565 \ CMAKE_PROJECT_TOP_LEVEL_INCLUDES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1566 \ CMAKE_PROJECT_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1567 \ CMAKE_PROJECT_VERSION_MAJOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1568 \ CMAKE_PROJECT_VERSION_MINOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1569 \ CMAKE_PROJECT_VERSION_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1570 \ CMAKE_PROJECT_VERSION_TWEAK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1571 \ CMAKE_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1572 \ CMAKE_RC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1573 \ CMAKE_RC_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1574 \ CMAKE_RC_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1575 \ CMAKE_RC_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1576 \ CMAKE_RC_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1577 \ CMAKE_RC_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1578 \ CMAKE_RC_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1579 \ CMAKE_RC_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1580 \ CMAKE_RC_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1581 \ CMAKE_RC_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1582 \ CMAKE_RC_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1583 \ CMAKE_RC_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1584 \ CMAKE_RC_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1585 \ CMAKE_RC_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1586 \ CMAKE_RC_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1587 \ CMAKE_RC_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1588 \ CMAKE_RC_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1589 \ CMAKE_RC_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1590 \ CMAKE_RC_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1591 \ CMAKE_RC_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1592 \ CMAKE_RC_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1593 \ CMAKE_RC_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1594 \ CMAKE_RC_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1595 \ CMAKE_RC_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1596 \ CMAKE_RC_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1597 \ CMAKE_RC_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1598 \ CMAKE_RC_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1599 \ CMAKE_RC_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1600 \ CMAKE_RC_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1601 \ CMAKE_RC_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1602 \ CMAKE_RC_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1603 \ CMAKE_RC_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1604 \ CMAKE_RC_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1605 \ CMAKE_RC_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1606 \ CMAKE_RC_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1607 \ CMAKE_RC_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1608 \ CMAKE_RC_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1609 \ CMAKE_RC_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1610 \ CMAKE_RC_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1611 \ CMAKE_RC_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1612 \ CMAKE_RC_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1613 \ CMAKE_RC_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1614 \ CMAKE_RC_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1615 \ CMAKE_RC_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1616 \ CMAKE_RC_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1617 \ CMAKE_RC_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1618 \ CMAKE_RC_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1619 \ CMAKE_RC_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1620 \ CMAKE_RC_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1621 \ CMAKE_RC_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1622 \ CMAKE_RC_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1623 \ CMAKE_RC_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1624 \ CMAKE_RC_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1625 \ CMAKE_RC_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1626 \ CMAKE_RC_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1627 \ CMAKE_RC_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1628 \ CMAKE_RC_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1629 \ CMAKE_RC_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1630 \ CMAKE_RC_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1631 \ CMAKE_RC_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1632 \ CMAKE_RC_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1633 \ CMAKE_RC_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1634 \ CMAKE_RC_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1635 \ CMAKE_RC_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1636 \ CMAKE_RC_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1637 \ CMAKE_RC_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1638 \ CMAKE_RC_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1639 \ CMAKE_RC_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1640 \ CMAKE_RC_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1641 \ CMAKE_RC_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1642 \ CMAKE_RC_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1643 \ CMAKE_RC_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1644 \ CMAKE_RC_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1645 \ CMAKE_ROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1646 \ CMAKE_RULE_MESSAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1647 \ CMAKE_RUNTIME_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1648 \ CMAKE_SCRIPT_MODE_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1649 \ CMAKE_SHARED_LIBRARY_ENABLE_EXPORTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1650 \ CMAKE_SHARED_LIBRARY_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1651 \ CMAKE_SHARED_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1652 \ CMAKE_SHARED_LINKER_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1653 \ CMAKE_SHARED_LINKER_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1654 \ CMAKE_SHARED_MODULE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1655 \ CMAKE_SHARED_MODULE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1656 \ CMAKE_SIZEOF_VOID_P
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1657 \ CMAKE_SKIP_BUILD_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1658 \ CMAKE_SKIP_INSTALL_ALL_DEPENDENCY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1659 \ CMAKE_SKIP_INSTALL_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1660 \ CMAKE_SKIP_INSTALL_RULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1661 \ CMAKE_SKIP_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1662 \ CMAKE_SKIP_TEST_ALL_DEPENDENCY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1663 \ CMAKE_SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1664 \ CMAKE_STAGING_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1665 \ CMAKE_STATIC_LIBRARY_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1666 \ CMAKE_STATIC_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1667 \ CMAKE_STATIC_LINKER_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1668 \ CMAKE_STATIC_LINKER_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1669 \ CMAKE_SUBLIME_TEXT_2_ENV_SETTINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1670 \ CMAKE_SUBLIME_TEXT_2_EXCLUDE_BUILD_TREE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1671 \ CMAKE_SUPPRESS_REGENERATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1672 \ CMAKE_SYSROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1673 \ CMAKE_SYSROOT_COMPILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1674 \ CMAKE_SYSROOT_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1675 \ CMAKE_SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1676 \ CMAKE_SYSTEM_APPBUNDLE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1677 \ CMAKE_SYSTEM_FRAMEWORK_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1678 \ CMAKE_SYSTEM_IGNORE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1679 \ CMAKE_SYSTEM_IGNORE_PREFIX_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1680 \ CMAKE_SYSTEM_INCLUDE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1681 \ CMAKE_SYSTEM_LIBRARY_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1682 \ CMAKE_SYSTEM_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1683 \ CMAKE_SYSTEM_PREFIX_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1684 \ CMAKE_SYSTEM_PROCESSOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1685 \ CMAKE_SYSTEM_PROGRAM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1686 \ CMAKE_SYSTEM_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1687 \ CMAKE_Swift
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1688 \ CMAKE_Swift_ANDROID_TOOLCHAIN_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1689 \ CMAKE_Swift_ANDROID_TOOLCHAIN_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1690 \ CMAKE_Swift_ANDROID_TOOLCHAIN_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1691 \ CMAKE_Swift_ARCHIVE_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1692 \ CMAKE_Swift_ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1693 \ CMAKE_Swift_ARCHIVE_FINISH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1694 \ CMAKE_Swift_BYTE_ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1695 \ CMAKE_Swift_CLANG_TIDY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1696 \ CMAKE_Swift_CLANG_TIDY_EXPORT_FIXES_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1697 \ CMAKE_Swift_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1698 \ CMAKE_Swift_COMPILER_ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1699 \ CMAKE_Swift_COMPILER_AR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1700 \ CMAKE_Swift_COMPILER_ARCHITECTURE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1701 \ CMAKE_Swift_COMPILER_EXTERNAL_TOOLCHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1702 \ CMAKE_Swift_COMPILER_FRONTEND_VARIANT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1703 \ CMAKE_Swift_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1704 \ CMAKE_Swift_COMPILER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1705 \ CMAKE_Swift_COMPILER_LOADED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1706 \ CMAKE_Swift_COMPILER_PREDEFINES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1707 \ CMAKE_Swift_COMPILER_RANLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1708 \ CMAKE_Swift_COMPILER_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1709 \ CMAKE_Swift_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1710 \ CMAKE_Swift_COMPILER_VERSION_INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1711 \ CMAKE_Swift_COMPILE_OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1712 \ CMAKE_Swift_CPPCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1713 \ CMAKE_Swift_CPPLINT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1714 \ CMAKE_Swift_CREATE_SHARED_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1715 \ CMAKE_Swift_CREATE_SHARED_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1716 \ CMAKE_Swift_CREATE_STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1717 \ CMAKE_Swift_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1718 \ CMAKE_Swift_EXTENSIONS_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1719 \ CMAKE_Swift_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1720 \ CMAKE_Swift_FLAGS_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1721 \ CMAKE_Swift_FLAGS_DEBUG_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1722 \ CMAKE_Swift_FLAGS_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1723 \ CMAKE_Swift_FLAGS_MINSIZEREL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1724 \ CMAKE_Swift_FLAGS_MINSIZEREL_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1725 \ CMAKE_Swift_FLAGS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1726 \ CMAKE_Swift_FLAGS_RELEASE_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1727 \ CMAKE_Swift_FLAGS_RELWITHDEBINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1728 \ CMAKE_Swift_FLAGS_RELWITHDEBINFO_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1729 \ CMAKE_Swift_IGNORE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1730 \ CMAKE_Swift_IMPLICIT_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1731 \ CMAKE_Swift_IMPLICIT_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1732 \ CMAKE_Swift_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1733 \ CMAKE_Swift_IMPLICIT_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1734 \ CMAKE_Swift_INCLUDE_WHAT_YOU_USE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1735 \ CMAKE_Swift_INIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1736 \ CMAKE_Swift_LANGUAGE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1737 \ CMAKE_Swift_LIBRARY_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1738 \ CMAKE_Swift_LINKER_LAUNCHER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1739 \ CMAKE_Swift_LINKER_PREFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1740 \ CMAKE_Swift_LINKER_PREFERENCE_PROPAGATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1741 \ CMAKE_Swift_LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1742 \ CMAKE_Swift_LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1743 \ CMAKE_Swift_LINK_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1744 \ CMAKE_Swift_LINK_LIBRARY_FILE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1745 \ CMAKE_Swift_LINK_LIBRARY_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1746 \ CMAKE_Swift_LINK_LIBRARY_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1747 \ CMAKE_Swift_LINK_WHAT_YOU_USE_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1748 \ CMAKE_Swift_MODULE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1749 \ CMAKE_Swift_NUM_THREADS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1750 \ CMAKE_Swift_OUTPUT_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1751 \ CMAKE_Swift_PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1752 \ CMAKE_Swift_SIMULATE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1753 \ CMAKE_Swift_SIMULATE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1754 \ CMAKE_Swift_SIZEOF_DATA_PTR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1755 \ CMAKE_Swift_SOURCE_FILE_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1756 \ CMAKE_Swift_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1757 \ CMAKE_Swift_STANDARD_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1758 \ CMAKE_Swift_STANDARD_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1759 \ CMAKE_Swift_STANDARD_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1760 \ CMAKE_Swift_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1761 \ CMAKE_Swift_SUPPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1762 \ CMAKE_Swift_VISIBILITY_PRESET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1763 \ CMAKE_TASKING_TOOLSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1764 \ CMAKE_TLS_CAINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1765 \ CMAKE_TLS_VERIFY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1766 \ CMAKE_TOOLCHAIN_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1767 \ CMAKE_TRY_COMPILE_CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1768 \ CMAKE_TRY_COMPILE_NO_PLATFORM_VARIABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1769 \ CMAKE_TRY_COMPILE_PLATFORM_VARIABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1770 \ CMAKE_TRY_COMPILE_TARGET_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1771 \ CMAKE_TWEAK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1772 \ CMAKE_UNITY_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1773 \ CMAKE_UNITY_BUILD_BATCH_SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1774 \ CMAKE_UNITY_BUILD_UNIQUE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1775 \ CMAKE_USER_MAKE_RULES_OVERRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1776 \ CMAKE_USER_MAKE_RULES_OVERRIDE_ASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1777 \ CMAKE_USER_MAKE_RULES_OVERRIDE_ASM_MASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1778 \ CMAKE_USER_MAKE_RULES_OVERRIDE_ASM_NASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1779 \ CMAKE_USER_MAKE_RULES_OVERRIDE_C
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1780 \ CMAKE_USER_MAKE_RULES_OVERRIDE_CSharp
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1781 \ CMAKE_USER_MAKE_RULES_OVERRIDE_CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1782 \ CMAKE_USER_MAKE_RULES_OVERRIDE_CXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1783 \ CMAKE_USER_MAKE_RULES_OVERRIDE_Fortran
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1784 \ CMAKE_USER_MAKE_RULES_OVERRIDE_HIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1785 \ CMAKE_USER_MAKE_RULES_OVERRIDE_Java
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1786 \ CMAKE_USER_MAKE_RULES_OVERRIDE_RC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1787 \ CMAKE_USER_MAKE_RULES_OVERRIDE_Swift
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1788 \ CMAKE_USE_RELATIVE_PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1789 \ CMAKE_VERBOSE_MAKEFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1790 \ CMAKE_VERIFY_INTERFACE_HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1791 \ CMAKE_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1792 \ CMAKE_VISIBILITY_INLINES_HIDDEN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1793 \ CMAKE_VS_DEBUGGER_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1794 \ CMAKE_VS_DEBUGGER_COMMAND_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1795 \ CMAKE_VS_DEBUGGER_ENVIRONMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1796 \ CMAKE_VS_DEBUGGER_WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1797 \ CMAKE_VS_DEVENV_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1798 \ CMAKE_VS_GLOBALS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1799 \ CMAKE_VS_INCLUDE_INSTALL_TO_DEFAULT_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1800 \ CMAKE_VS_INCLUDE_PACKAGE_TO_DEFAULT_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1801 \ CMAKE_VS_INTEL_Fortran_PROJECT_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1802 \ CMAKE_VS_JUST_MY_CODE_DEBUGGING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1803 \ CMAKE_VS_MSBUILD_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1804 \ CMAKE_VS_NO_COMPILE_BATCHING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1805 \ CMAKE_VS_NUGET_PACKAGE_RESTORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1806 \ CMAKE_VS_NsightTegra_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1807 \ CMAKE_VS_PLATFORM_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1808 \ CMAKE_VS_PLATFORM_NAME_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1809 \ CMAKE_VS_PLATFORM_TOOLSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1810 \ CMAKE_VS_PLATFORM_TOOLSET_CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1811 \ CMAKE_VS_PLATFORM_TOOLSET_CUDA_CUSTOM_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1812 \ CMAKE_VS_PLATFORM_TOOLSET_HOST_ARCHITECTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1813 \ CMAKE_VS_PLATFORM_TOOLSET_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1814 \ CMAKE_VS_SDK_EXCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1815 \ CMAKE_VS_SDK_EXECUTABLE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1816 \ CMAKE_VS_SDK_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1817 \ CMAKE_VS_SDK_LIBRARY_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1818 \ CMAKE_VS_SDK_LIBRARY_WINRT_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1819 \ CMAKE_VS_SDK_REFERENCE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1820 \ CMAKE_VS_SDK_SOURCE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1821 \ CMAKE_VS_TARGET_FRAMEWORK_IDENTIFIER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1822 \ CMAKE_VS_TARGET_FRAMEWORK_TARGETS_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1823 \ CMAKE_VS_TARGET_FRAMEWORK_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1824 \ CMAKE_VS_VERSION_BUILD_NUMBER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1825 \ CMAKE_VS_WINDOWS_TARGET_PLATFORM_MIN_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1826 \ CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1827 \ CMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION_MAXIMUM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1828 \ CMAKE_VS_WINRT_BY_DEFAULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1829 \ CMAKE_WARN_DEPRECATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1830 \ CMAKE_WARN_ON_ABSOLUTE_INSTALL_DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1831 \ CMAKE_WATCOM_RUNTIME_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1832 \ CMAKE_WIN32_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1833 \ CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1834 \ CMAKE_XCODE_BUILD_SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1835 \ CMAKE_XCODE_GENERATE_SCHEME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1836 \ CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1837 \ CMAKE_XCODE_LINK_BUILD_PHASE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1838 \ CMAKE_XCODE_PLATFORM_TOOLSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1839 \ CMAKE_XCODE_SCHEME_ADDRESS_SANITIZER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1840 \ CMAKE_XCODE_SCHEME_ADDRESS_SANITIZER_USE_AFTER_RETURN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1841 \ CMAKE_XCODE_SCHEME_DEBUG_DOCUMENT_VERSIONING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1842 \ CMAKE_XCODE_SCHEME_ENABLE_GPU_FRAME_CAPTURE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1843 \ CMAKE_XCODE_SCHEME_DISABLE_MAIN_THREAD_CHECKER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1844 \ CMAKE_XCODE_SCHEME_DYNAMIC_LIBRARY_LOADS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1845 \ CMAKE_XCODE_SCHEME_DYNAMIC_LINKER_API_USAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1846 \ CMAKE_XCODE_SCHEME_ENABLE_GPU_API_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1847 \ CMAKE_XCODE_SCHEME_ENABLE_GPU_FRAME_CAPTURE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1848 \ CMAKE_XCODE_SCHEME_ENABLE_GPU_SHADER_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1849 \ CMAKE_XCODE_SCHEME_ENVIRONMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1850 \ CMAKE_XCODE_SCHEME_GUARD_MALLOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1851 \ CMAKE_XCODE_SCHEME_LAUNCH_CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1852 \ CMAKE_XCODE_SCHEME_LAUNCH_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1853 \ CMAKE_XCODE_SCHEME_MAIN_THREAD_CHECKER_STOP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1854 \ CMAKE_XCODE_SCHEME_MALLOC_GUARD_EDGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1855 \ CMAKE_XCODE_SCHEME_MALLOC_SCRIBBLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1856 \ CMAKE_XCODE_SCHEME_MALLOC_STACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1857 \ CMAKE_XCODE_SCHEME_THREAD_SANITIZER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1858 \ CMAKE_XCODE_SCHEME_THREAD_SANITIZER_STOP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1859 \ CMAKE_XCODE_SCHEME_UNDEFINED_BEHAVIOUR_SANITIZER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1860 \ CMAKE_XCODE_SCHEME_UNDEFINED_BEHAVIOUR_SANITIZER_STOP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1861 \ CMAKE_XCODE_SCHEME_ENABLE_GPU_API_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1862 \ CMAKE_XCODE_SCHEME_ENABLE_GPU_SHADER_VALIDATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1863 \ CMAKE_XCODE_SCHEME_LAUNCH_CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1864 \ CMAKE_XCODE_SCHEME_WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1865 \ CMAKE_XCODE_SCHEME_ZOMBIE_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1866 \ CMAKE_XCODE_XCCONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1867 \ CPACK_ABSOLUTE_DESTINATION_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1868 \ CPACK_COMPONENT_INCLUDE_TOPLEVEL_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1869 \ CPACK_CUSTOM_INSTALL_VARIABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1870 \ CPACK_ERROR_ON_ABSOLUTE_INSTALL_DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1871 \ CPACK_INCLUDE_TOPLEVEL_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1872 \ CPACK_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1873 \ CPACK_PACKAGING_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1874 \ CPACK_SET_DESTDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1875 \ CPACK_WARN_ON_ABSOLUTE_INSTALL_DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1876 \ CTEST_BINARY_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1877 \ CTEST_BUILD_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1878 \ CTEST_BUILD_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1879 \ CTEST_BZR_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1880 \ CTEST_BZR_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1881 \ CTEST_CHANGE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1882 \ CTEST_CHECKOUT_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1883 \ CTEST_CONFIGURATION_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1884 \ CTEST_CONFIGURE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1885 \ CTEST_COVERAGE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1886 \ CTEST_COVERAGE_EXTRA_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1887 \ CTEST_CURL_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1888 \ CTEST_CUSTOM_COVERAGE_EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1889 \ CTEST_CUSTOM_ERROR_EXCEPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1890 \ CTEST_CUSTOM_ERROR_MATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1891 \ CTEST_CUSTOM_ERROR_POST_CONTEXT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1892 \ CTEST_CUSTOM_ERROR_PRE_CONTEXT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1893 \ CTEST_CUSTOM_MAXIMUM_FAILED_TEST_OUTPUT_SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1894 \ CTEST_CUSTOM_MAXIMUM_NUMBER_OF_ERRORS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1895 \ CTEST_CUSTOM_MAXIMUM_NUMBER_OF_WARNINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1896 \ CTEST_CUSTOM_MAXIMUM_PASSED_TEST_OUTPUT_SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1897 \ CTEST_CUSTOM_TEST_OUTPUT_TRUNCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1898 \ CTEST_CUSTOM_MEMCHECK_IGNORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1899 \ CTEST_CUSTOM_POST_MEMCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1900 \ CTEST_CUSTOM_POST_TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1901 \ CTEST_CUSTOM_PRE_MEMCHECK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1902 \ CTEST_CUSTOM_PRE_TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1903 \ CTEST_CUSTOM_TESTS_IGNORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1904 \ CTEST_CUSTOM_TEST_OUTPUT_TRUNCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1905 \ CTEST_CUSTOM_WARNING_EXCEPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1906 \ CTEST_CUSTOM_WARNING_MATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1907 \ CTEST_CVS_CHECKOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1908 \ CTEST_CVS_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1909 \ CTEST_CVS_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1910 \ CTEST_DROP_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1911 \ CTEST_DROP_METHOD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1912 \ CTEST_DROP_SITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1913 \ CTEST_DROP_SITE_CDASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1914 \ CTEST_DROP_SITE_PASSWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1915 \ CTEST_DROP_SITE_USER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1916 \ CTEST_EXTRA_COVERAGE_GLOB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1917 \ CTEST_GIT_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1918 \ CTEST_GIT_INIT_SUBMODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1919 \ CTEST_GIT_UPDATE_CUSTOM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1920 \ CTEST_GIT_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1921 \ CTEST_HG_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1922 \ CTEST_HG_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1923 \ CTEST_LABELS_FOR_SUBPROJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1924 \ CTEST_MEMORYCHECK_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1925 \ CTEST_MEMORYCHECK_COMMAND_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1926 \ CTEST_MEMORYCHECK_SANITIZER_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1927 \ CTEST_MEMORYCHECK_SUPPRESSIONS_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1928 \ CTEST_MEMORYCHECK_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1929 \ CTEST_NIGHTLY_START_TIME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1930 \ CTEST_P4_CLIENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1931 \ CTEST_P4_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1932 \ CTEST_P4_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1933 \ CTEST_P4_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1934 \ CTEST_RESOURCE_SPEC_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1935 \ CTEST_RUN_CURRENT_SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1936 \ CTEST_SCP_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1937 \ CTEST_SCRIPT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1938 \ CTEST_SITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1939 \ CTEST_SOURCE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1940 \ CTEST_SUBMIT_INACTIVITY_TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1941 \ CTEST_SUBMIT_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1942 \ CTEST_SVN_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1943 \ CTEST_SVN_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1944 \ CTEST_SVN_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1945 \ CTEST_TEST_LOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1946 \ CTEST_TEST_TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1947 \ CTEST_TRIGGER_SITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1948 \ CTEST_UPDATE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1949 \ CTEST_UPDATE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1950 \ CTEST_UPDATE_VERSION_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1951 \ CTEST_UPDATE_VERSION_OVERRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1952 \ CTEST_USE_LAUNCHERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1953 \ CYGWIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1954 \ DOXYGEN_ABBREVIATE_BRIEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1955 \ DOXYGEN_ALIASES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1956 \ DOXYGEN_ALLEXTERNALS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1957 \ DOXYGEN_ALLOW_UNICODE_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1958 \ DOXYGEN_ALPHABETICAL_INDEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1959 \ DOXYGEN_ALWAYS_DETAILED_SEC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1960 \ DOXYGEN_AUTOLINK_SUPPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1961 \ DOXYGEN_BINARY_TOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1962 \ DOXYGEN_BRIEF_MEMBER_DESC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1963 \ DOXYGEN_BUILTIN_STL_SUPPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1964 \ DOXYGEN_CALLER_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1965 \ DOXYGEN_CALL_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1966 \ DOXYGEN_CASE_SENSE_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1967 \ DOXYGEN_CHM_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1968 \ DOXYGEN_CHM_INDEX_ENCODING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1969 \ DOXYGEN_CITE_BIB_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1970 \ DOXYGEN_CLANG_ASSISTED_PARSING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1971 \ DOXYGEN_CLANG_DATABASE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1972 \ DOXYGEN_CLANG_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1973 \ DOXYGEN_CLASS_DIAGRAMS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1974 \ DOXYGEN_CLASS_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1975 \ DOXYGEN_COLLABORATION_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1976 \ DOXYGEN_COLS_IN_ALPHA_INDEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1977 \ DOXYGEN_COMPACT_LATEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1978 \ DOXYGEN_COMPACT_RTF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1979 \ DOXYGEN_CPP_CLI_SUPPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1980 \ DOXYGEN_CREATE_SUBDIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1981 \ DOXYGEN_DIAFILE_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1982 \ DOXYGEN_DIA_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1983 \ DOXYGEN_DIRECTORY_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1984 \ DOXYGEN_DISABLE_INDEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1985 \ DOXYGEN_DISTRIBUTE_GROUP_DOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1986 \ DOXYGEN_DOCBOOK_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1987 \ DOXYGEN_DOCBOOK_PROGRAMLISTING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1988 \ DOXYGEN_DOCSET_BUNDLE_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1989 \ DOXYGEN_DOCSET_FEEDNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1990 \ DOXYGEN_DOCSET_PUBLISHER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1991 \ DOXYGEN_DOCSET_PUBLISHER_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1992 \ DOXYGEN_DOTFILE_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1993 \ DOXYGEN_DOT_CLEANUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1994 \ DOXYGEN_DOT_FONTNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1995 \ DOXYGEN_DOT_FONTPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1996 \ DOXYGEN_DOT_FONTSIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1997 \ DOXYGEN_DOT_GRAPH_MAX_NODES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1998 \ DOXYGEN_DOT_IMAGE_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
1999 \ DOXYGEN_DOT_MULTI_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2000 \ DOXYGEN_DOT_NUM_THREADS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2001 \ DOXYGEN_DOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2002 \ DOXYGEN_DOT_TRANSPARENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2003 \ DOXYGEN_DOXYFILE_ENCODING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2004 \ DOXYGEN_ECLIPSE_DOC_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2005 \ DOXYGEN_ENABLED_SECTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2006 \ DOXYGEN_ENABLE_PREPROCESSING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2007 \ DOXYGEN_ENUM_VALUES_PER_LINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2008 \ DOXYGEN_EXAMPLE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2009 \ DOXYGEN_EXAMPLE_PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2010 \ DOXYGEN_EXAMPLE_RECURSIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2011 \ DOXYGEN_EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2012 \ DOXYGEN_EXCLUDE_PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2013 \ DOXYGEN_EXCLUDE_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2014 \ DOXYGEN_EXCLUDE_SYMLINKS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2015 \ DOXYGEN_EXPAND_AS_DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2016 \ DOXYGEN_EXPAND_ONLY_PREDEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2017 \ DOXYGEN_EXTENSION_MAPPING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2018 \ DOXYGEN_EXTERNAL_GROUPS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2019 \ DOXYGEN_EXTERNAL_PAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2020 \ DOXYGEN_EXTERNAL_SEARCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2021 \ DOXYGEN_EXTERNAL_SEARCH_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2022 \ DOXYGEN_EXTRACT_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2023 \ DOXYGEN_EXTRACT_ANON_NSPACES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2024 \ DOXYGEN_EXTRACT_LOCAL_CLASSES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2025 \ DOXYGEN_EXTRACT_LOCAL_METHODS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2026 \ DOXYGEN_EXTRACT_PACKAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2027 \ DOXYGEN_EXTRACT_PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2028 \ DOXYGEN_EXTRACT_PRIV_VIRTUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2029 \ DOXYGEN_EXTRACT_STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2030 \ DOXYGEN_EXTRA_PACKAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2031 \ DOXYGEN_EXTRA_SEARCH_MAPPINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2032 \ DOXYGEN_EXT_LINKS_IN_WINDOW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2033 \ DOXYGEN_FILE_PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2034 \ DOXYGEN_FILE_VERSION_FILTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2035 \ DOXYGEN_FILTER_PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2036 \ DOXYGEN_FILTER_SOURCE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2037 \ DOXYGEN_FILTER_SOURCE_PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2038 \ DOXYGEN_FORCE_LOCAL_INCLUDES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2039 \ DOXYGEN_FORMULA_FONTSIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2040 \ DOXYGEN_FORMULA_TRANSPARENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2041 \ DOXYGEN_FULL_PATH_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2042 \ DOXYGEN_GENERATE_AUTOGEN_DEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2043 \ DOXYGEN_GENERATE_BUGLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2044 \ DOXYGEN_GENERATE_CHI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2045 \ DOXYGEN_GENERATE_DEPRECATEDLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2046 \ DOXYGEN_GENERATE_DOCBOOK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2047 \ DOXYGEN_GENERATE_DOCSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2048 \ DOXYGEN_GENERATE_ECLIPSEHELP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2049 \ DOXYGEN_GENERATE_HTML
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2050 \ DOXYGEN_GENERATE_HTMLHELP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2051 \ DOXYGEN_GENERATE_LATEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2052 \ DOXYGEN_GENERATE_LEGEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2053 \ DOXYGEN_GENERATE_MAN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2054 \ DOXYGEN_GENERATE_PERLMOD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2055 \ DOXYGEN_GENERATE_QHP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2056 \ DOXYGEN_GENERATE_RTF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2057 \ DOXYGEN_GENERATE_TAGFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2058 \ DOXYGEN_GENERATE_TESTLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2059 \ DOXYGEN_GENERATE_TODOLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2060 \ DOXYGEN_GENERATE_TREEVIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2061 \ DOXYGEN_GENERATE_XML
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2062 \ DOXYGEN_GRAPHICAL_HIERARCHY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2063 \ DOXYGEN_GROUP_GRAPHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2064 \ DOXYGEN_GROUP_NESTED_COMPOUNDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2065 \ DOXYGEN_HAVE_DOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2066 \ DOXYGEN_HHC_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2067 \ DOXYGEN_HIDE_COMPOUND_REFERENCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2068 \ DOXYGEN_HIDE_FRIEND_COMPOUNDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2069 \ DOXYGEN_HIDE_IN_BODY_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2070 \ DOXYGEN_HIDE_SCOPE_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2071 \ DOXYGEN_HIDE_UNDOC_CLASSES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2072 \ DOXYGEN_HIDE_UNDOC_MEMBERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2073 \ DOXYGEN_HIDE_UNDOC_RELATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2074 \ DOXYGEN_HTML_COLORSTYLE_GAMMA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2075 \ DOXYGEN_HTML_COLORSTYLE_HUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2076 \ DOXYGEN_HTML_COLORSTYLE_SAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2077 \ DOXYGEN_HTML_DYNAMIC_MENUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2078 \ DOXYGEN_HTML_DYNAMIC_SECTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2079 \ DOXYGEN_HTML_EXTRA_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2080 \ DOXYGEN_HTML_EXTRA_STYLESHEET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2081 \ DOXYGEN_HTML_FILE_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2082 \ DOXYGEN_HTML_FOOTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2083 \ DOXYGEN_HTML_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2084 \ DOXYGEN_HTML_INDEX_NUM_ENTRIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2085 \ DOXYGEN_HTML_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2086 \ DOXYGEN_HTML_STYLESHEET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2087 \ DOXYGEN_HTML_TIMESTAMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2088 \ DOXYGEN_IDL_PROPERTY_SUPPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2089 \ DOXYGEN_IGNORE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2090 \ DOXYGEN_IMAGE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2091 \ DOXYGEN_INCLUDED_BY_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2092 \ DOXYGEN_INCLUDE_FILE_PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2093 \ DOXYGEN_INCLUDE_GRAPH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2094 \ DOXYGEN_INCLUDE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2095 \ DOXYGEN_INHERIT_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2096 \ DOXYGEN_INLINE_GROUPED_CLASSES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2097 \ DOXYGEN_INLINE_INFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2098 \ DOXYGEN_INLINE_INHERITED_MEMB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2099 \ DOXYGEN_INLINE_SIMPLE_STRUCTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2100 \ DOXYGEN_INLINE_SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2101 \ DOXYGEN_INPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2102 \ DOXYGEN_INPUT_ENCODING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2103 \ DOXYGEN_INPUT_FILTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2104 \ DOXYGEN_INTERACTIVE_SVG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2105 \ DOXYGEN_INTERNAL_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2106 \ DOXYGEN_JAVADOC_AUTOBRIEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2107 \ DOXYGEN_JAVADOC_BANNER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2108 \ DOXYGEN_LATEX_BATCHMODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2109 \ DOXYGEN_LATEX_BIB_STYLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2110 \ DOXYGEN_LATEX_CMD_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2111 \ DOXYGEN_LATEX_EMOJI_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2112 \ DOXYGEN_LATEX_EXTRA_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2113 \ DOXYGEN_LATEX_EXTRA_STYLESHEET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2114 \ DOXYGEN_LATEX_FOOTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2115 \ DOXYGEN_LATEX_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2116 \ DOXYGEN_LATEX_HIDE_INDICES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2117 \ DOXYGEN_LATEX_MAKEINDEX_CMD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2118 \ DOXYGEN_LATEX_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2119 \ DOXYGEN_LATEX_SOURCE_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2120 \ DOXYGEN_LATEX_TIMESTAMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2121 \ DOXYGEN_LAYOUT_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2122 \ DOXYGEN_LOOKUP_CACHE_SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2123 \ DOXYGEN_MACRO_EXPANSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2124 \ DOXYGEN_MAKEINDEX_CMD_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2125 \ DOXYGEN_MAN_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2126 \ DOXYGEN_MAN_LINKS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2127 \ DOXYGEN_MAN_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2128 \ DOXYGEN_MAN_SUBDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2129 \ DOXYGEN_MARKDOWN_SUPPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2130 \ DOXYGEN_MATHJAX_CODEFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2131 \ DOXYGEN_MATHJAX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2132 \ DOXYGEN_MATHJAX_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2133 \ DOXYGEN_MATHJAX_RELPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2134 \ DOXYGEN_MAX_DOT_GRAPH_DEPTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2135 \ DOXYGEN_MAX_INITIALIZER_LINES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2136 \ DOXYGEN_MSCFILE_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2137 \ DOXYGEN_MULTILINE_CPP_IS_BRIEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2138 \ DOXYGEN_OPTIMIZE_FOR_FORTRAN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2139 \ DOXYGEN_OPTIMIZE_OUTPUT_FOR_C
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2140 \ DOXYGEN_OPTIMIZE_OUTPUT_JAVA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2141 \ DOXYGEN_OPTIMIZE_OUTPUT_SLICE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2142 \ DOXYGEN_OPTIMIZE_OUTPUT_VHDL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2143 \ DOXYGEN_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2144 \ DOXYGEN_OUTPUT_LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2145 \ DOXYGEN_OUTPUT_TEXT_DIRECTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2146 \ DOXYGEN_PAPER_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2147 \ DOXYGEN_PDF_HYPERLINKS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2148 \ DOXYGEN_PERLMOD_LATEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2149 \ DOXYGEN_PERLMOD_MAKEVAR_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2150 \ DOXYGEN_PERLMOD_PRETTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2151 \ DOXYGEN_PLANTUML_CFG_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2152 \ DOXYGEN_PLANTUML_INCLUDE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2153 \ DOXYGEN_PLANTUML_JAR_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2154 \ DOXYGEN_PREDEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2155 \ DOXYGEN_PROJECT_BRIEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2156 \ DOXYGEN_PROJECT_LOGO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2157 \ DOXYGEN_PROJECT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2158 \ DOXYGEN_PROJECT_NUMBER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2159 \ DOXYGEN_QCH_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2160 \ DOXYGEN_QHG_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2161 \ DOXYGEN_QHP_CUST_FILTER_ATTRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2162 \ DOXYGEN_QHP_CUST_FILTER_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2163 \ DOXYGEN_QHP_NAMESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2164 \ DOXYGEN_QHP_SECT_FILTER_ATTRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2165 \ DOXYGEN_QHP_VIRTUAL_FOLDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2166 \ DOXYGEN_QT_AUTOBRIEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2167 \ DOXYGEN_QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2168 \ DOXYGEN_RECURSIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2169 \ DOXYGEN_REFERENCED_BY_RELATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2170 \ DOXYGEN_REFERENCES_LINK_SOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2171 \ DOXYGEN_REFERENCES_RELATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2172 \ DOXYGEN_REPEAT_BRIEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2173 \ DOXYGEN_RTF_EXTENSIONS_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2174 \ DOXYGEN_RTF_HYPERLINKS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2175 \ DOXYGEN_RTF_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2176 \ DOXYGEN_RTF_SOURCE_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2177 \ DOXYGEN_RTF_STYLESHEET_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2178 \ DOXYGEN_SEARCHDATA_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2179 \ DOXYGEN_SEARCHENGINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2180 \ DOXYGEN_SEARCHENGINE_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2181 \ DOXYGEN_SEARCH_INCLUDES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2182 \ DOXYGEN_SEPARATE_MEMBER_PAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2183 \ DOXYGEN_SERVER_BASED_SEARCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2184 \ DOXYGEN_SHORT_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2185 \ DOXYGEN_SHOW_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2186 \ DOXYGEN_SHOW_GROUPED_MEMB_INC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2187 \ DOXYGEN_SHOW_INCLUDE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2188 \ DOXYGEN_SHOW_NAMESPACES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2189 \ DOXYGEN_SHOW_USED_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2190 \ DOXYGEN_SIP_SUPPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2191 \ DOXYGEN_SKIP_FUNCTION_MACROS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2192 \ DOXYGEN_SORT_BRIEF_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2193 \ DOXYGEN_SORT_BY_SCOPE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2194 \ DOXYGEN_SORT_GROUP_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2195 \ DOXYGEN_SORT_MEMBERS_CTORS_1ST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2196 \ DOXYGEN_SORT_MEMBER_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2197 \ DOXYGEN_SOURCE_BROWSER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2198 \ DOXYGEN_SOURCE_TOOLTIPS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2199 \ DOXYGEN_STRICT_PROTO_MATCHING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2200 \ DOXYGEN_STRIP_CODE_COMMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2201 \ DOXYGEN_STRIP_FROM_INC_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2202 \ DOXYGEN_STRIP_FROM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2203 \ DOXYGEN_SUBGROUPING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2204 \ DOXYGEN_TAB_SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2205 \ DOXYGEN_TAGFILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2206 \ DOXYGEN_TCL_SUBST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2207 \ DOXYGEN_TEMPLATE_RELATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2208 \ DOXYGEN_TOC_EXPAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2209 \ DOXYGEN_TOC_INCLUDE_HEADINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2210 \ DOXYGEN_TREEVIEW_WIDTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2211 \ DOXYGEN_TYPEDEF_HIDES_STRUCT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2212 \ DOXYGEN_UML_LIMIT_NUM_FIELDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2213 \ DOXYGEN_UML_LOOK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2214 \ DOXYGEN_USE_HTAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2215 \ DOXYGEN_USE_MATHJAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2216 \ DOXYGEN_USE_MDFILE_AS_MAINPAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2217 \ DOXYGEN_USE_PDFLATEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2218 \ DOXYGEN_VERBATIM_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2219 \ DOXYGEN_VERBATIM_VARS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2220 \ DOXYGEN_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2221 \ DOXYGEN_WARNINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2222 \ DOXYGEN_WARN_AS_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2223 \ DOXYGEN_WARN_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2224 \ DOXYGEN_WARN_IF_DOC_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2225 \ DOXYGEN_WARN_IF_UNDOCUMENTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2226 \ DOXYGEN_WARN_LOGFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2227 \ DOXYGEN_WARN_NO_PARAMDOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2228 \ DOXYGEN_XML_NS_MEMB_FILE_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2229 \ DOXYGEN_XML_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2230 \ DOXYGEN_XML_PROGRAMLISTING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2231 \ ENV
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2232 \ EXECUTABLE_OUTPUT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2233 \ GHSMULTI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2234 \ IOS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2235 \ LIBRARY_OUTPUT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2236 \ LINUX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2237 \ MINGW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2238 \ MSVC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2239 \ MSVC10
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2240 \ MSVC11
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2241 \ MSVC12
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2242 \ MSVC14
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2243 \ MSVC60
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2244 \ MSVC70
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2245 \ MSVC71
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2246 \ MSVC80
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2247 \ MSVC90
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2248 \ MSVC_IDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2249 \ MSVC_TOOLSET_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2250 \ MSVC_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2251 \ MSYS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2252 \ PROJECT_BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2253 \ PROJECT_DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2254 \ PROJECT_HOMEPAGE_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2255 \ PROJECT_IS_TOP_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2256 \ PROJECT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2257 \ PROJECT_SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2258 \ PROJECT_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2259 \ PROJECT_VERSION_MAJOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2260 \ PROJECT_VERSION_MINOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2261 \ PROJECT_VERSION_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2262 \ PROJECT_VERSION_TWEAK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2263 \ UNIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2264 \ WIN32
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2265 \ WINCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2266 \ WINDOWS_PHONE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2267 \ WINDOWS_STORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2268 \ XCODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2269 \ XCODE_VERSION
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2270
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2271 syn keyword cmakeModule contained
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2272 \ ExternalProject
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2273 \ FetchContent
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2274
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2275 syn keyword cmakeKWExternalProject contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2276 \ AWS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2277 \ BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2278 \ BUILD_ALWAYS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2279 \ BUILD_BYPRODUCTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2280 \ BUILD_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2281 \ BUILD_IN_SOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2282 \ CHECKOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2283 \ CMAKE_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2284 \ CMAKE_CACHE_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2285 \ CMAKE_CACHE_DEFAULT_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2286 \ CMAKE_EP_GIT_REMOTE_UPDATE_STRATEGY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2287 \ CMAKE_INSTALL_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2288 \ COMMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2289 \ CONFIGURE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2290 \ CONFIGURE_HANDLED_BY_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2291 \ CVS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2292 \ CVSROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2293 \ CVS_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2294 \ CVS_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2295 \ CVS_TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2296 \ DEPENDEES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2297 \ DEPENDERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2298 \ DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2299 \ DOWNLOADED_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2300 \ DOWNLOAD_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2301 \ DOWNLOAD_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2302 \ DOWNLOAD_EXTRACT_TIMESTAMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2303 \ DOWNLOAD_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2304 \ DOWNLOAD_NO_EXTRACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2305 \ DOWNLOAD_NO_PROGRESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2306 \ EP_BASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2307 \ EP_INDEPENDENT_STEP_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2308 \ EP_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2309 \ EP_STEP_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2310 \ EP_UPDATE_DISCONNECTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2311 \ EXCLUDE_FROM_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2312 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2313 \ FORCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2314 \ GHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2315 \ GIT_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2316 \ GIT_PROGRESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2317 \ GIT_REMOTE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2318 \ GIT_REMOTE_UPDATE_STRATEGY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2319 \ GIT_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2320 \ GIT_SHALLOW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2321 \ GIT_SUBMODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2322 \ GIT_SUBMODULES_RECURSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2323 \ GIT_TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2324 \ HG_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2325 \ HG_TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2326 \ HTTP_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2327 \ HTTP_PASSWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2328 \ HTTP_USERNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2329 \ IGNORED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2330 \ INACTIVITY_TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2331 \ INDEPENDENT_STEP_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2332 \ INSTALL_BYPRODUCTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2333 \ INSTALL_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2334 \ INSTALL_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2335 \ JOB_POOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2336 \ LIST_SEPARATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2337 \ LOG_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2338 \ LOG_CONFIGURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2339 \ LOG_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2340 \ LOG_DOWNLOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2341 \ LOG_INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2342 \ LOG_MERGED_STDOUTERR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2343 \ LOG_OUTPUT_ON_FAILURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2344 \ LOG_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2345 \ LOG_TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2346 \ LOG_UPDATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2347 \ MAKE_EXE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2348 \ MULTI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2349 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2350 \ NETRC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2351 \ NETRC_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2352 \ NOTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2353 \ NO_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2354 \ OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2355 \ PATCH_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2356 \ PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2357 \ PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2358 \ REBASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2359 \ REBASE_CHECKOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2360 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2361 \ SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2362 \ SOURCE_SUBDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2363 \ STAMP_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2364 \ STEP_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2365 \ STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2366 \ SVN_PASSWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2367 \ SVN_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2368 \ SVN_REVISION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2369 \ SVN_TRUST_CERT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2370 \ SVN_USERNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2371 \ TEST_AFTER_INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2372 \ TEST_BEFORE_INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2373 \ TEST_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2374 \ TEST_EXCLUDE_FROM_MAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2375 \ TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2376 \ TLS_CAINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2377 \ TLS_VERIFY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2378 \ TMP_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2379 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2380 \ UPDATE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2381 \ UPDATE_DISCONNECTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2382 \ URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2383 \ URL_HASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2384 \ URL_MD5
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2385 \ USES_TERMINAL_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2386 \ USES_TERMINAL_CONFIGURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2387 \ USES_TERMINAL_DOWNLOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2388 \ USES_TERMINAL_INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2389 \ USES_TERMINAL_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2390 \ USES_TERMINAL_TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2391 \ USES_TERMINAL_UPDATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2392 \ WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2393
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2394 syn keyword cmakeKWFetchContent contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2395 \ ALWAYS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2396 \ BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2397 \ BUILD_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2398 \ BYPASS_PROVIDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2399 \ CMAKE_PROJECT_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2400 \ CONFIGURE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2401 \ COPY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2402 \ CORRECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2403 \ DCMAKE_TOOLCHAIN_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2404 \ DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2405 \ DOWNLOAD_NO_EXTRACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2406 \ EXISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2407 \ FETCHCONTENT_BASE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2408 \ FETCHCONTENT_FULLY_DISCONNECTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2409 \ FETCHCONTENT_MAKEAVAILABLE_SERIAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2410 \ FETCHCONTENT_QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2411 \ FETCHCONTENT_SOURCE_DIR_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2412 \ FETCHCONTENT_TRY_FIND_PACKAGE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2413 \ FETCHCONTENT_UPDATES_DISCONNECTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2414 \ FETCHCONTENT_UPDATES_DISCONNECTED_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2415 \ FIND_PACKAGE_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2416 \ GIT_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2417 \ GIT_TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2418 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2419 \ GTEST_BOTH_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2420 \ GTEST_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2421 \ GTEST_MAIN_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2422 \ INSTALL_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2423 \ INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2424 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2425 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2426 \ NEVER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2427 \ NOTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2428 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2429 \ OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2430 \ OPT_IN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2431 \ OVERRIDE_FIND_PACKAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2432 \ PACKAGE_VERSION_COMPATIBLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2433 \ PACKAGE_VERSION_EXACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2434 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2435 \ SOURCE_SUBDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2436 \ STREQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2437 \ SUBBUILD_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2438 \ SVN_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2439 \ SVN_REVISION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2440 \ SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2441 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2442 \ TEST_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2443 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2444 \ URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2445 \ URL_HASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2446 \ VERIFY_INTERFACE_HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2447 \ WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2448 \ WRONG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2449 \ _BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2450 \ _INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2451 \ _POPULATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2452 \ _SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2453
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2454 syn keyword cmakeKWadd_compile_definitions contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2455 \ COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2456 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2457
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2458 syn keyword cmakeKWadd_compile_options contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2459 \ CMAKE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2460 \ COMPILE_LANGUAGE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2461 \ COMPILE_OPTIONS
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2462 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2463 \ SHELL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2464 \ UNIX_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2465 \ _FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2466 \ _FLAGS_
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2467
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2468 syn keyword cmakeKWadd_custom_command contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2469 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2470 \ ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2471 \ BNF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2472 \ BYPRODUCTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2473 \ CC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2474 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2475 \ COMMAND_EXPAND_LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2476 \ COMMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2477 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2478 \ CROSSCOMPILING_EMULATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2479 \ DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2480 \ DEPENDS_EXPLICIT_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2481 \ DEPFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2482 \ GENERATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2483 \ IMPLICIT_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2484 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2485 \ JOB_POOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2486 \ JOB_POOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2487 \ JOIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2488 \ MAIN_DEPENDENCY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2489 \ MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2490 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2491 \ OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2492 \ PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2493 \ POST_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2494 \ PRE_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2495 \ PRE_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2496 \ SYMBOLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2497 \ TARGET_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2498 \ TARGET_LINKER_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2499 \ TARGET_PDB_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2500 \ TARGET_PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2501 \ TARGET_SONAME_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2502 \ USES_TERMINAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2503 \ VERBATIM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2504 \ WORKING_DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2505
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2506 syn keyword cmakeKWadd_custom_target contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2507 \ ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2508 \ BYPRODUCTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2509 \ CC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2510 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2511 \ COMMAND_EXPAND_LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2512 \ COMMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2513 \ CROSSCOMPILING_EMULATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2514 \ DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2515 \ GENERATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2516 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2517 \ JOB_POOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2518 \ JOB_POOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2519 \ JOIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2520 \ PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2521 \ SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2522 \ TARGET_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2523 \ TARGET_LINKER_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2524 \ TARGET_PDB_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2525 \ TARGET_PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2526 \ TARGET_SONAME_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2527 \ USES_TERMINAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2528 \ VERBATIM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2529 \ WORKING_DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2530
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2531 syn keyword cmakeKWadd_definitions contained
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2532 \ COMPILE_DEFINITIONS
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2533
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2534 syn keyword cmakeKWadd_dependencies contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2535 \ DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2536 \ OBJECT_DEPENDS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2537
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2538 syn keyword cmakeKWadd_executable contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2539 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2540 \ ALIAS_GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2541 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2542 \ EXCLUDE_FROM_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2543 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2544 \ HEADER_FILE_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2545 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2546 \ IMPORTED_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2547 \ IMPORTED_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2548 \ IMPORTED_LOCATION_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2549 \ MACOSX_BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2550 \ OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2551 \ RUNTIME_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2552 \ TARGET
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2553
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2554 syn keyword cmakeKWadd_library contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2555 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2556 \ ALIAS_GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2557 \ ARCHIVE_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2558 \ CLI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2559 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2560 \ DLL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2561 \ EXCLUDE_FROM_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2562 \ FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2563 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2564 \ HEADER_FILE_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2565 \ HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2566 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2567 \ IMPORTED_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2568 \ IMPORTED_IMPLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2569 \ IMPORTED_IMPLIB_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2570 \ IMPORTED_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2571 \ IMPORTED_LOCATION_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2572 \ IMPORTED_NO_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2573 \ IMPORTED_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2574 \ IMPORTED_OBJECTS_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2575 \ IMPORTED_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2576 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2577 \ INTERFACE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2578 \ INTERFACE_SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2579 \ LC_ID_DYLIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2580 \ LIBRARY_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2581 \ MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2582 \ OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2583 \ ON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2584 \ OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2585 \ POSITION_INDEPENDENT_CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2586 \ POST_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2587 \ PRE_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2588 \ PRE_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2589 \ PRIVATE_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2590 \ PUBLIC_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2591 \ RUNTIME_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2592 \ SHARED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2593 \ SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2594 \ SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2595 \ STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2596 \ TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2597 \ TARGET_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2598 \ TARGET_RUNTIME_DLLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2599 \ UNKNOWN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2600
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2601 syn keyword cmakeKWadd_link_options contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2602 \ CMAKE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2603 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2604 \ CUDA_RESOLVE_DEVICE_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2605 \ CUDA_SEPARABLE_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2606 \ DEVICE_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2607 \ GCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2608 \ HOST_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2609 \ LANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2610 \ LINKER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2611 \ LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2612 \ SHELL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2613 \ STATIC_LIBRARY_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2614 \ UNIX_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2615 \ _FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2616 \ _FLAGS_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2617 \ _LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2618 \ _LINKER_WRAPPER_FLAG_SEP
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2619
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2620 syn keyword cmakeKWadd_subdirectory contained
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2621 \ EXCLUDE_FROM_ALL
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2622 \ SYSTEM
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2623
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2624 syn keyword cmakeKWadd_test contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2625 \ BUILD_TESTING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2626 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2627 \ COMMAND_EXPAND_LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2628 \ CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2629 \ FAIL_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2630 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2631 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2632 \ PASS_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2633 \ SKIP_REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2634 \ TARGET_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2635 \ WILL_FAIL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2636 \ WILL_FALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2637 \ WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2638
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2639 syn keyword cmakeKWblock contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2640 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2641 \ POLICIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2642 \ PROPAGATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2643 \ PUSH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2644 \ SCOPE_FOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2645 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2646 \ VARIABLES
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2647
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2648 syn keyword cmakeKWbuild_command contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2649 \ CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2650 \ PARALLEL_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2651 \ TARGET
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2652
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2653 syn keyword cmakeKWcmake_file_api contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2654 \ API
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2655 \ API_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2656 \ BUILD_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2657 \ CMAKEFILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2658 \ CODEMODEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2659 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2660 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2661 \ QUERY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2662 \ TOOLCHAINS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2663
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2664 syn keyword cmakeKWcmake_host_system_information contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2665 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2666 \ AVAILABLE_PHYSICAL_MEMORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2667 \ AVAILABLE_VIRTUAL_MEMORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2668 \ BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2669 \ CMAKE_GET_OS_RELEASE_FALLBACK_CONTENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2670 \ CMAKE_GET_OS_RELEASE_FALLBACK_RESULT_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2671 \ CMAKE_GET_OS_RELEASE_FALLBACK_RESULT_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2672 \ CMAKE_GET_OS_RELEASE_FALLBACK_RESULT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2673 \ CMAKE_GET_OS_RELEASE_FALLBACK_RESULT_PRETTY_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2674 \ CMAKE_GET_OS_RELEASE_FALLBACK_RESULT_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2675 \ CMAKE_GET_OS_RELEASE_FALLBACK_RESULT_VERSION_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2676 \ CMAKE_GET_OS_RELEASE_FALLBACK_SCRIPTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2677 \ DISTRIB_INFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2678 \ DISTRIB_PRETTY_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2679 \ DISTRO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2680 \ DISTRO_BUG_REPORT_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2681 \ DISTRO_HOME_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2682 \ DISTRO_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2683 \ DISTRO_ID_LIKE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2684 \ DISTRO_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2685 \ DISTRO_PRETTY_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2686 \ DISTRO_PRIVACY_POLICY_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2687 \ DISTRO_SUPPORT_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2688 \ DISTRO_UBUNTU_CODENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2689 \ DISTRO_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2690 \ DISTRO_VERSION_CODENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2691 \ DISTRO_VERSION_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2692 \ ERROR_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2693 \ EXISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2694 \ FQDN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2695 \ HAS_FPU
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2696 \ HAS_MMX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2697 \ HAS_MMX_PLUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2698 \ HAS_SERIAL_NUMBER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2699 \ HAS_SSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2700 \ HAS_SSE_FP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2701 \ HAS_SSE_MMX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2702 \ HKCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2703 \ HKCR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2704 \ HKCU
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2705 \ HKEY_CLASSES_ROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2706 \ HKEY_CURRENT_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2707 \ HKEY_CURRENT_USER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2708 \ HKEY_LOCAL_MACHINE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2709 \ HKEY_USERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2710 \ HKLM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2711 \ HKU
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2712 \ HOSTNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2713 \ ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2714 \ LIMIT_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2715 \ LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2716 \ LTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2717 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2718 \ NNN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2719 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2720 \ NUMBER_OF_LOGICAL_CORES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2721 \ NUMBER_OF_PHYSICAL_CORES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2722 \ OS_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2723 \ OS_PLATFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2724 \ OS_RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2725 \ OS_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2726 \ PRETTY_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2727 \ PROCESSOR_DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2728 \ PROCESSOR_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2729 \ PROCESSOR_SERIAL_NUMBER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2730 \ QUERY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2731 \ REG_DWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2732 \ REG_EXPAND_SZ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2733 \ REG_MULTI_SZ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2734 \ REG_QWORD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2735 \ REG_SZ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2736 \ RESULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2737 \ SEPARATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2738 \ SOFTWARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2739 \ STATUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2740 \ STRINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2741 \ SUBKEYS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2742 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2743 \ TOTAL_PHYSICAL_MEMORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2744 \ TOTAL_VIRTUAL_MEMORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2745 \ VALUE_NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2746 \ VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2747 \ VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2748 \ WINDOWS_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2749
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2750 syn keyword cmakeKWcmake_language contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2751 \ AND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2752 \ ANY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2753 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2754 \ ARGN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2755 \ BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2756 \ BYPASS_PROVIDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2757 \ CALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2758 \ CANCEL_CALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2759 \ CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2760 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2761 \ COMMAND_ERROR_IS_FATAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2762 \ DCMAKE_PROJECT_TOP_LEVEL_INCLUDES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2763 \ DEFER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2764 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2765 \ EVAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2766 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2767 \ FETCHCONTENT_MAKEAVAILABE_SERIAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2768 \ FETCHCONTENT_MAKEAVAILABLE_SERIAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2769 \ FETCHCONTENT_SOURCE_DIR_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2770 \ FETCHCONTENT_TRY_FIND_PACKAGE_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2771 \ FIND_PACKAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2772 \ FIND_PACKAGE_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2773 \ GET_CALL_IDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2774 \ GET_MESSAGE_LOG_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2775 \ GIT_REPOSITORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2776 \ GIT_SUBMODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2777 \ GIT_TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2778 \ ID_VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2779 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2780 \ MYCOMP_PROVIDER_INSTALL_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2781 \ NEVER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2782 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2783 \ OVERRIDE_FIND_PACKAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2784 \ PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2785 \ POP_BACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2786 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2787 \ SET_DEPENDENCY_PROVIDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2788 \ SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2789 \ STATUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2790 \ STREQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2791 \ SUPPORTED_METHODS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2792 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2793 \ VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2794 \ WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2795 \ _FOUND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2796 \ _PATH
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2797
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2798 syn keyword cmakeKWcmake_minimum_required contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2799 \ FATAL_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2800 \ VERSION
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2801
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2802 syn keyword cmakeKWcmake_parse_arguments contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2803 \ ARGN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2804 \ CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2805 \ DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2806 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2807 \ FAST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2808 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2809 \ MY_INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2810 \ MY_INSTALL_CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2811 \ MY_INSTALL_DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2812 \ MY_INSTALL_FAST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2813 \ MY_INSTALL_KEYWORDS_MISSING_VALUES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2814 \ MY_INSTALL_OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2815 \ MY_INSTALL_RENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2816 \ MY_INSTALL_TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2817 \ MY_INSTALL_UNPARSED_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2818 \ OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2819 \ PARSE_ARGV
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2820 \ RENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2821 \ TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2822 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2823 \ UNDEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2824 \ _KEYWORDS_MISSING_VALUES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2825 \ _UNPARSED_ARGUMENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2826
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2827 syn keyword cmakeKWcmake_path contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2828 \ ABSOLUTE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2829 \ AND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2830 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2831 \ APPEND_STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2832 \ BASE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2833 \ COMPARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2834 \ CONVERT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2835 \ EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2836 \ EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2837 \ EXTENSION_DEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2838 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2839 \ FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2840 \ FILENAME_DEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2841 \ GET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2842 \ GET_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2843 \ GET_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2844 \ GET_PARENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2845 \ GET_RELATIVE_PART
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2846 \ GET_ROOT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2847 \ GET_ROOT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2848 \ GET_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2849 \ GET_STEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2850 \ HASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2851 \ HAS_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2852 \ HAS_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2853 \ HAS_PARENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2854 \ HAS_RELATIVE_PART
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2855 \ HAS_ROOT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2856 \ HAS_ROOT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2857 \ HAS_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2858 \ HAS_STEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2859 \ IS_ABSOLUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2860 \ IS_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2861 \ IS_RELATIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2862 \ LAST_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2863 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2864 \ NATIVE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2865 \ NORMALIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2866 \ NORMAL_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2867 \ NOT_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2868 \ OP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2869 \ OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2870 \ PARENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2871 \ REAL_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2872 \ RELATIVE_PART
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2873 \ RELATIVE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2874 \ REMOVE_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2875 \ REMOVE_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2876 \ REPLACE_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2877 \ REPLACE_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2878 \ ROOT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2879 \ ROOT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2880 \ ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2881 \ SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2882 \ STEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2883 \ STREQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2884 \ TO_CMAKE_PATH_LIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2885 \ TO_NATIVE_PATH_LIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2886 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2887 \ XOR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2888
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2889 syn keyword cmakeKWcmake_policy contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2890 \ CMAKE_POLICY_DEFAULT_CMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2891 \ CMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2892 \ GET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2893 \ NNNN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2894 \ NO_POLICY_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2895 \ OLD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2896 \ POLICIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2897 \ POP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2898 \ PUSH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2899 \ SCOPE_FOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2900 \ SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2901 \ VERSION
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2902
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2903 syn keyword cmakeKWconfigure_file contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2904 \ COPYONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2905 \ CRLF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2906 \ DOS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2907 \ ESCAPE_QUOTES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2908 \ FILE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2909 \ FOO_ENABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2910 \ FOO_STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2911 \ GENERATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2912 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2913 \ LF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2914 \ NEWLINE_STYLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2915 \ NO_SOURCE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2916 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2917 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2918 \ SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2919 \ USE_SOURCE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2920 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2921
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2922 syn keyword cmakeKWcreate_test_sourcelist contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2923 \ CMAKE_TESTDRIVER_AFTER_TESTMAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2924 \ CMAKE_TESTDRIVER_BEFORE_TESTMAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2925 \ EXTRA_INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2926 \ FUNCTION
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2927
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2928 syn keyword cmakeKWctest_build contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2929 \ ALL_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2930 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2931 \ BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2932 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2933 \ CMAKE_BUILD_PARALLEL_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2934 \ CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2935 \ CTEST_BUILD_CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2936 \ CTEST_BUILD_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2937 \ CTEST_BUILD_TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2938 \ FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2939 \ NUMBER_ERRORS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2940 \ NUMBER_WARNINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2941 \ PARALLEL_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2942 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2943 \ RETURN_VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2944 \ TARGET
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2945
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2946 syn keyword cmakeKWctest_configure contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2947 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2948 \ BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2949 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2950 \ OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2951 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2952 \ RETURN_VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2953 \ SOURCE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2954
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2955 syn keyword cmakeKWctest_coverage contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2956 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2957 \ BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2958 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2959 \ LABELS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2960 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2961 \ RETURN_VALUE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2962
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2963 syn keyword cmakeKWctest_memcheck contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2964 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2965 \ BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2966 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2967 \ DEFECT_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2968 \ EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2969 \ EXCLUDE_FIXTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2970 \ EXCLUDE_FIXTURE_CLEANUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2971 \ EXCLUDE_FIXTURE_SETUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2972 \ EXCLUDE_LABEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2973 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2974 \ INCLUDE_LABEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2975 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2976 \ ON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2977 \ OUTPUT_JUNIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2978 \ PARALLEL_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2979 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2980 \ REPEAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2981 \ RESOURCE_SPEC_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2982 \ RETURN_VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2983 \ SCHEDULE_RANDOM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2984 \ START
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2985 \ STOP_ON_FAILURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2986 \ STOP_TIME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2987 \ STRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2988 \ TEST_LOAD
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2989
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2990 syn keyword cmakeKWctest_run_script contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2991 \ NEW_PROCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2992 \ RETURN_VALUE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2993
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
2994 syn keyword cmakeKWctest_start contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2995 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2996 \ GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2997 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2998 \ TAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
2999 \ TRACK
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3000
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3001 syn keyword cmakeKWctest_submit contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3002 \ API
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3003 \ BUILD_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3004 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3005 \ CDASH_UPLOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3006 \ CDASH_UPLOAD_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3007 \ CTEST_EXTRA_SUBMIT_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3008 \ CTEST_NOTES_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3009 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3010 \ HTTPHEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3011 \ PARTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3012 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3013 \ RETRY_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3014 \ RETRY_DELAY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3015 \ RETURN_VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3016 \ SUBMIT_URL
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3017
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3018 syn keyword cmakeKWctest_test contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3019 \ AFTER_TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3020 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3021 \ ATTACHED_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3022 \ ATTACHED_FILES_ON_FAIL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3023 \ BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3024 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3025 \ CPU
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3026 \ EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3027 \ EXCLUDE_FIXTURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3028 \ EXCLUDE_FIXTURE_CLEANUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3029 \ EXCLUDE_FIXTURE_SETUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3030 \ EXCLUDE_LABEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3031 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3032 \ INCLUDE_LABEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3033 \ LABELS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3034 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3035 \ ON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3036 \ OUTPUT_JUNIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3037 \ PARALLEL_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3038 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3039 \ REPEAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3040 \ RESOURCE_SPEC_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3041 \ RETURN_VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3042 \ SCHEDULE_RANDOM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3043 \ START
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3044 \ STOP_ON_FAILURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3045 \ STOP_TIME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3046 \ STRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3047 \ TEST_LOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3048 \ UNTIL_FAIL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3049 \ UNTIL_PASS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3050 \ URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3051 \ XML
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3052
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3053 syn keyword cmakeKWctest_update contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3054 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3055 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3056 \ RETURN_VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3057 \ SOURCE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3058
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3059 syn keyword cmakeKWctest_upload contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3060 \ CAPTURE_CMAKE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3061 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3062 \ QUIET
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3063
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3064 syn keyword cmakeKWdefine_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3065 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3066 \ APPEND_STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3067 \ BRIEF_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3068 \ CACHED_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3069 \ CMAKE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3070 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3071 \ FULL_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3072 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3073 \ INHERITED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3074 \ INITIALIZE_FROM_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3075 \ PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3076 \ SOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3077 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3078 \ TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3079 \ VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3080 \ _CMAKE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3081
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3082 syn keyword cmakeKWdoxygen_add_docs contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3083 \ ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3084 \ COMMENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3085 \ USE_STAMP_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3086 \ WORKING_DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3087
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3088 syn keyword cmakeKWenable_language contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3089 \ ASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3090 \ ASM_MARMASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3091 \ ASM_MASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3092 \ ASM_NASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3093 \ ATT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3094 \ CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3095 \ HIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3096 \ ISPC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3097 \ OBJC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3098 \ OBJCXX
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3099 \ OPTIONAL
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3100
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3101 syn keyword cmakeKWenable_testing contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3102 \ BUILD_TESTING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3103
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3104 syn keyword cmakeKWexec_program contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3105 \ ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3106 \ OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3107 \ RETURN_VALUE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3108
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3109 syn keyword cmakeKWexecute_process contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3110 \ ANSI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3111 \ ANY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3112 \ AUTO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3113 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3114 \ COMMAND_ECHO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3115 \ COMMAND_ERROR_IS_FATAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3116 \ ECHO_ERROR_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3117 \ ECHO_OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3118 \ ENCODING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3119 \ ERROR_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3120 \ ERROR_QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3121 \ ERROR_STRIP_TRAILING_WHITESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3122 \ ERROR_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3123 \ INPUT_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3124 \ LAST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3125 \ NONE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3126 \ OEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3127 \ OUTPUT_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3128 \ OUTPUT_QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3129 \ OUTPUT_STRIP_TRAILING_WHITESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3130 \ OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3131 \ POSIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3132 \ RESULTS_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3133 \ RESULT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3134 \ RFC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3135 \ STDERR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3136 \ STDOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3137 \ TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3138 \ UTF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3139 \ WORKING_DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3140
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3141 syn keyword cmakeKWexport contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3142 \ ANDROID_MK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3143 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3144 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3145 \ CXX_MODULES_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3146 \ EXPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3147 \ EXPORT_LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3148 \ FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3149 \ IMPORTED_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3150 \ NAMESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3151 \ NDK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3152 \ OLD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3153 \ PACKAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3154 \ TARGETS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3155
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3156 syn keyword cmakeKWexport_library_dependencies contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3157 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3158 \ EXPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3159 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3160 \ LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3161 \ SET
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3162
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3163 syn keyword cmakeKWfile contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3164 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3165 \ ARCHIVE_CREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3166 \ ARCHIVE_EXTRACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3167 \ ASCII
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3168 \ BASE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3169 \ BUNDLE_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3170 \ CHMOD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3171 \ CHMOD_RECURSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3172 \ CMAKE_GET_RUNTIME_DEPENDENCIES_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3173 \ CMAKE_GET_RUNTIME_DEPENDENCIES_PLATFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3174 \ CMAKE_GET_RUNTIME_DEPENDENCIES_TOOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3175 \ CMAKE_INSTALL_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3176 \ CMAKE_OBJDUMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3177 \ CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3178 \ COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3179 \ COMPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3180 \ COMPRESSION_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3181 \ CONDITION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3182 \ CONFIGURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3183 \ CONFIGURE_DEPENDS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3184 \ CONFLICTING_DEPENDENCIES_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3185 \ CONTENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3186 \ CONVERT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3187 \ COPYONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3188 \ COPY_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3189 \ COPY_ON_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3190 \ CREATE_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3191 \ CRLF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3192 \ DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3193 \ DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3194 \ DIRECTORY_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3195 \ DLL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3196 \ DOS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3197 \ DOWNLOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3198 \ ENCODING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3199 \ ESCAPE_QUOTES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3200 \ EXECUTABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3201 \ EXPAND_TILDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3202 \ EXPECTED_HASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3203 \ FILES_MATCHING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3204 \ FILE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3205 \ FOLLOW_SYMLINKS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3206 \ FOLLOW_SYMLINK_CHAIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3207 \ FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3208 \ FUNCTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3209 \ GENERATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3210 \ GET_RUNTIME_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3211 \ GLOB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3212 \ GLOB_RECURSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3213 \ GROUP_EXECUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3214 \ GROUP_READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3215 \ GROUP_WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3216 \ GUARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3217 \ HASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3218 \ HEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3219 \ HOME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3220 \ HTTPHEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3221 \ IGNORED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3222 \ INACTIVITY_TIMEOUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3223 \ INPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3224 \ INPUT_MAY_BE_RECENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3225 \ INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3226 \ IS_ABSOLUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3227 \ LENGTH_MAXIMUM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3228 \ LENGTH_MINIMUM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3229 \ LF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3230 \ LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3231 \ LIMIT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3232 \ LIMIT_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3233 \ LIMIT_INPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3234 \ LIMIT_OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3235 \ LIST_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3236 \ LIST_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3237 \ LOCK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3238 \ LOG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3239 \ MAKE_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3240 \ MODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3241 \ MTIME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3242 \ MYLIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3243 \ NETRC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3244 \ NETRC_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3245 \ NEWLINE_CONSUME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3246 \ NEWLINE_STYLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3247 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3248 \ NO_HEX_CONVERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3249 \ NO_REPLACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3250 \ NO_SOURCE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3251 \ OFFSET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3252 \ ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3253 \ ONLY_IF_DIFFERENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3254 \ OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3255 \ OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3256 \ OWNER_EXECUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3257 \ OWNER_READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3258 \ OWNER_WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3259 \ PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3260 \ PATTERN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3261 \ PATTERNS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3262 \ PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3263 \ POST_EXCLUDE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3264 \ POST_EXCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3265 \ POST_INCLUDE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3266 \ POST_INCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3267 \ PRE_EXCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3268 \ PRE_INCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3269 \ PROCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3270 \ RANGE_END
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3271 \ RANGE_START
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3272 \ READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3273 \ READ_SYMLINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3274 \ REAL_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3275 \ REGEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3276 \ RELATIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3277 \ RELATIVE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3278 \ RELEASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3279 \ REMOVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3280 \ REMOVE_RECURSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3281 \ RENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3282 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3283 \ RESOLVED_DEPENDENCIES_VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3284 \ RESULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3285 \ RESULT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3286 \ RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3287 \ RUNPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3288 \ RUNTIME_DEPENDENCY_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3289 \ SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3290 \ SETGID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3291 \ SETUID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3292 \ SHARED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3293 \ SHOW_PROGRESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3294 \ SIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3295 \ SSL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3296 \ STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3297 \ STATUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3298 \ STRINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3299 \ SYMBOLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3300 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3301 \ TARGET_PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3302 \ TIMESTAMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3303 \ TLS_CAINFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3304 \ TLS_VERIFY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3305 \ TOUCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3306 \ TOUCH_NOCREATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3307 \ TO_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3308 \ TO_CMAKE_PATH_LIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3309 \ TO_NATIVE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3310 \ TO_NATIVE_PATH_LIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3311 \ UNRESOLVED_DEPENDENCIES_VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3312 \ UPLOAD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3313 \ URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3314 \ USERPROFILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3315 \ USERPWD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3316 \ USE_SOURCE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3317 \ UTC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3318 \ UTF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3319 \ VERBOSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3320 \ WORLD_EXECUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3321 \ WORLD_READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3322 \ WORLD_WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3323 \ WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3324 \ XZ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3325 \ _FILENAMES
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3326
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3327 syn keyword cmakeKWfind_file contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3328 \ BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3329 \ CATEGORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3330 \ CMAKE_FIND_ROOT_PATH_BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3331 \ CMAKE_FIND_USE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3332 \ DOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3333 \ DVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3334 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3335 \ FIND_XXX_REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3336 \ HINTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3337 \ HOST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3338 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3339 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3340 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3341 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3342 \ NO_CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3343 \ NO_CMAKE_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3344 \ NO_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3345 \ NO_CMAKE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3346 \ NO_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3347 \ NO_CMAKE_SYSTEM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3348 \ NO_DEFAULT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3349 \ NO_PACKAGE_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3350 \ NO_SYSTEM_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3351 \ ONLY_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3352 \ PACKAGENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3353 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3354 \ PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3355 \ PATH_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3356 \ REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3357 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3358 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3359 \ VALIDATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3360 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3361
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3362 syn keyword cmakeKWfind_library contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3363 \ BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3364 \ CATEGORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3365 \ CMAKE_FIND_ROOT_PATH_BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3366 \ CMAKE_FIND_USE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3367 \ DOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3368 \ DVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3369 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3370 \ FIND_XXX_REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3371 \ HINTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3372 \ HOST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3373 \ LIB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3374 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3375 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3376 \ NAMES_PER_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3377 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3378 \ NO_CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3379 \ NO_CMAKE_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3380 \ NO_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3381 \ NO_CMAKE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3382 \ NO_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3383 \ NO_CMAKE_SYSTEM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3384 \ NO_DEFAULT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3385 \ NO_PACKAGE_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3386 \ NO_SYSTEM_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3387 \ ONLY_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3388 \ PACKAGENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3389 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3390 \ PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3391 \ PATH_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3392 \ REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3393 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3394 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3395 \ VALIDATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3396 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3397
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3398 syn keyword cmakeKWfind_package contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3399 \ ABI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3400 \ BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3401 \ BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3402 \ BYPASS_PROVIDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3403 \ CATEGORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3404 \ CMAKE_DISABLE_FIND_PACKAGE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3405 \ CMAKE_REQUIRE_FIND_PACKAGE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3406 \ CMAKE_FIND_ROOT_PATH_BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3407 \ CMAKE_FIND_USE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3408 \ CMAKE_REQUIRE_FIND_PACKAGE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3409 \ COMPONENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3410 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3411 \ CONFIGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3412 \ DEC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3413 \ DVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3414 \ EXACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3415 \ EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3416 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3417 \ FIND_PACKAGE_VERSION_FORMAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3418 \ FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3419 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3420 \ HINTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3421 \ HOST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3422 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3423 \ MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3424 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3425 \ NATURAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3426 \ NO_CMAKE_BUILDS_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3427 \ NO_CMAKE_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3428 \ NO_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3429 \ NO_CMAKE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3430 \ NO_CMAKE_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3431 \ NO_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3432 \ NO_CMAKE_SYSTEM_PACKAGE_REGISTRY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3433 \ NO_CMAKE_SYSTEM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3434 \ NO_DEFAULT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3435 \ NO_MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3436 \ NO_PACKAGE_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3437 \ NO_POLICY_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3438 \ NO_SYSTEM_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3439 \ OLD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3440 \ ONLY_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3441 \ OPTIONAL_COMPONENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3442 \ PACKAGENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3443 \ PACKAGE_FIND_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3444 \ PACKAGE_FIND_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3445 \ PACKAGE_FIND_VERSION_COMPLETE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3446 \ PACKAGE_FIND_VERSION_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3447 \ PACKAGE_FIND_VERSION_MAJOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3448 \ PACKAGE_FIND_VERSION_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3449 \ PACKAGE_FIND_VERSION_MAX_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3450 \ PACKAGE_FIND_VERSION_MAX_MAJOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3451 \ PACKAGE_FIND_VERSION_MAX_MINOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3452 \ PACKAGE_FIND_VERSION_MAX_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3453 \ PACKAGE_FIND_VERSION_MAX_TWEAK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3454 \ PACKAGE_FIND_VERSION_MINOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3455 \ PACKAGE_FIND_VERSION_MIN_COUNT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3456 \ PACKAGE_FIND_VERSION_MIN_MAJOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3457 \ PACKAGE_FIND_VERSION_MIN_MINOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3458 \ PACKAGE_FIND_VERSION_MIN_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3459 \ PACKAGE_FIND_VERSION_MIN_TWEAK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3460 \ PACKAGE_FIND_VERSION_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3461 \ PACKAGE_FIND_VERSION_RANGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3462 \ PACKAGE_FIND_VERSION_RANGE_MAX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3463 \ PACKAGE_FIND_VERSION_RANGE_MIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3464 \ PACKAGE_FIND_VERSION_TWEAK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3465 \ PACKAGE_VERSION_COMPATIBLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3466 \ PACKAGE_VERSION_EXACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3467 \ PACKAGE_VERSION_UNSUITABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3468 \ PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3469 \ PATH_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3470 \ QUIET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3471 \ REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3472 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3473 \ SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3474 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3475 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3476 \ VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3477 \ _CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3478 \ _CONSIDERED_CONFIGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3479 \ _CONSIDERED_VERSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3480 \ _DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3481 \ _FIND_COMPONENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3482 \ _FIND_QUIETLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3483 \ _FIND_REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3484 \ _FIND_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3485 \ _FIND_REQUIRED_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3486 \ _FIND_VERSION_EXACT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3487 \ _FOUND
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3488
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3489 syn keyword cmakeKWfind_path contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3490 \ BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3491 \ CATEGORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3492 \ CMAKE_FIND_ROOT_PATH_BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3493 \ CMAKE_FIND_USE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3494 \ DOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3495 \ DVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3496 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3497 \ FIND_XXX_REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3498 \ HINTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3499 \ HOST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3500 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3501 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3502 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3503 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3504 \ NO_CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3505 \ NO_CMAKE_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3506 \ NO_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3507 \ NO_CMAKE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3508 \ NO_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3509 \ NO_CMAKE_SYSTEM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3510 \ NO_DEFAULT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3511 \ NO_PACKAGE_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3512 \ NO_SYSTEM_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3513 \ ONLY_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3514 \ PACKAGENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3515 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3516 \ PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3517 \ PATH_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3518 \ REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3519 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3520 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3521 \ VALIDATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3522 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3523
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3524 syn keyword cmakeKWfind_program contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3525 \ BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3526 \ CATEGORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3527 \ CMAKE_FIND_ROOT_PATH_BOTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3528 \ CMAKE_FIND_USE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3529 \ DOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3530 \ DVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3531 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3532 \ FIND_XXX_REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3533 \ HINTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3534 \ HOST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3535 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3536 \ NAMES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3537 \ NAMES_PER_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3538 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3539 \ NO_CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3540 \ NO_CMAKE_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3541 \ NO_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3542 \ NO_CMAKE_INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3543 \ NO_CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3544 \ NO_CMAKE_SYSTEM_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3545 \ NO_DEFAULT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3546 \ NO_PACKAGE_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3547 \ NO_SYSTEM_ENVIRONMENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3548 \ ONLY_CMAKE_FIND_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3549 \ PACKAGENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3550 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3551 \ PATHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3552 \ PATH_SUFFIXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3553 \ REGISTRY_VIEW
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3554 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3555 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3556 \ VALIDATOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3557 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3558
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3559 syn keyword cmakeKWfltk_wrap_ui contained
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3560 \ FLTK
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3561
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3562 syn keyword cmakeKWforeach contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3563 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3564 \ IN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3565 \ ITEMS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3566 \ LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3567 \ RANGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3568 \ STATUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3569 \ ZIP_LISTS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3570
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3571 syn keyword cmakeKWfunction contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3572 \ ARGC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3573 \ ARGN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3574 \ ARGV
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3575 \ CALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3576 \ FOO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3577 \ PARENT_SCOPE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3578
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3579 syn keyword cmakeKWget_cmake_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3580 \ COMPONENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3581 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3582 \ MACROS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3583 \ VARIABLES
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3584
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3585 syn keyword cmakeKWget_directory_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3586 \ DEFINITION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3587 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3588 \ INHERITED
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3589
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3590 syn keyword cmakeKWget_filename_component contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3591 \ ABSOLUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3592 \ BASE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3593 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3594 \ EXT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3595 \ LAST_EXT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3596 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3597 \ NAME_WE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3598 \ NAME_WLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3599 \ PROGRAM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3600 \ PROGRAM_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3601 \ QUERY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3602 \ REALPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3603 \ REAL_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3604 \ WINDOWS_REGISTRY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3605
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3606 syn keyword cmakeKWget_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3607 \ BRIEF_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3608 \ DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3609 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3610 \ FULL_DOCS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3611 \ GENERATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3612 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3613 \ INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3614 \ PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3615 \ SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3616 \ SOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3617 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3618 \ TARGET_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3619 \ TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3620 \ VARIABLE
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
3621
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3622 syn keyword cmakeKWget_source_file_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3623 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3624 \ GENERATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3625 \ INHERITED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3626 \ LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3627 \ TARGET_DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3628
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3629 syn keyword cmakeKWget_target_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3630 \ INHERITED
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3631 \ VAR
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3632
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3633 syn keyword cmakeKWget_test_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3634 \ INHERITED
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3635 \ VAR
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3636
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3637 syn keyword cmakeKWif contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3638 \ CMAKE_MATCH_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3639 \ CMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3640 \ COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3641 \ COMPARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3642 \ DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3643 \ EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3644 \ EXISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3645 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3646 \ GREATER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3647 \ GREATER_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3648 \ IGNORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3649 \ IN_LIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3650 \ IS_ABSOLUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3651 \ IS_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3652 \ IS_NEWER_THAN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3653 \ IS_SYMLINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3654 \ LESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3655 \ LESS_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3656 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3657 \ NNNN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3658 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3659 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3660 \ OR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3661 \ PATH_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3662 \ POLICY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3663 \ STREQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3664 \ STRGREATER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3665 \ STRGREATER_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3666 \ STRLESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3667 \ STRLESS_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3668 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3669 \ TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3670 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3671 \ VERSION_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3672 \ VERSION_GREATER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3673 \ VERSION_GREATER_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3674 \ VERSION_LESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3675 \ VERSION_LESS_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3676 \ YES
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3677
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3678 syn keyword cmakeKWinclude contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3679 \ NO_POLICY_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3680 \ OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3681 \ RESULT_VARIABLE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3682
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3683 syn keyword cmakeKWinclude_directories contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3684 \ AFTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3685 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3686 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3687 \ ON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3688 \ SYSTEM
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3689
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3690 syn keyword cmakeKWinclude_external_msproject contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3691 \ GUID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3692 \ MAP_IMPORTED_CONFIG_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3693 \ PLATFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3694 \ TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3695 \ WIX
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3696
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3697 syn keyword cmakeKWinclude_guard contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3698 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3699 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3700 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3701 \ __CURRENT_FILE_VAR__
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3702
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3703 syn keyword cmakeKWinstall contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3704 \ AFTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3705 \ AIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3706 \ ALL_COMPONENTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3707 \ APT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3708 \ ARCHIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3709 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3710 \ BUILD_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3711 \ BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3712 \ BUNDLE_EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3713 \ CMAKE_INSTALL_BINDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3714 \ CMAKE_INSTALL_DATADIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3715 \ CMAKE_INSTALL_DATAROOTDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3716 \ CMAKE_INSTALL_DOCDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3717 \ CMAKE_INSTALL_INCLUDEDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3718 \ CMAKE_INSTALL_INFODIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3719 \ CMAKE_INSTALL_LIBDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3720 \ CMAKE_INSTALL_LOCALEDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3721 \ CMAKE_INSTALL_LOCALSTATEDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3722 \ CMAKE_INSTALL_MANDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3723 \ CMAKE_INSTALL_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3724 \ CMAKE_INSTALL_RUNSTATEDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3725 \ CMAKE_INSTALL_SBINDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3726 \ CMAKE_INSTALL_SHARESTATEDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3727 \ CMAKE_INSTALL_SYSCONFDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3728 \ CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3729 \ COMPONENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3730 \ CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3731 \ CVS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3732 \ CXX_MODULES_BMI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3733 \ CXX_MODULES_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3734 \ DATA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3735 \ DATAROOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3736 \ DBUILD_TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3737 \ DCOMPONENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3738 \ DESTDIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3739 \ DESTINATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3740 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3741 \ DIRECTORY_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3742 \ DLL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3743 \ DOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3744 \ ENABLE_EXPORTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3745 \ EXCLUDE_FROM_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3746 \ EXECUTABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3747 \ EXPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3748 \ EXPORT_ANDROID_MK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3749 \ EXPORT_LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3750 \ EXPORT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3751 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3752 \ FILES_MATCHING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3753 \ FILE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3754 \ FILE_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3755 \ FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3756 \ GET_RUNTIME_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3757 \ GROUP_EXECUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3758 \ GROUP_READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3759 \ GROUP_WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3760 \ HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3761 \ IMPORTED_RUNTIME_ARTIFACTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3762 \ INCLUDES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3763 \ INFO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3764 \ INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3765 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3766 \ INTERFACE_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3767 \ LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3768 \ LOCALE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3769 \ LOCALSTATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3770 \ MACOSX_BUNDLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3771 \ MAN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3772 \ MESSAGE_NEVER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3773 \ NAMELINK_COMPONENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3774 \ NAMELINK_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3775 \ NAMELINK_SKIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3776 \ NAMESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3777 \ NDK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3778 \ OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3779 \ OPTIONAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3780 \ OWNER_EXECUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3781 \ OWNER_READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3782 \ OWNER_WRITE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3783 \ PATTERN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3784 \ PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3785 \ POST_EXCLUDE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3786 \ POST_EXCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3787 \ POST_INCLUDE_FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3788 \ POST_INCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3789 \ POST_INSTALL_SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3790 \ PRE_EXCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3791 \ PRE_INCLUDE_REGEXES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3792 \ PRE_INSTALL_SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3793 \ PRIVATE_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3794 \ PROGRAMS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3795 \ PROPERTIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3796 \ PUBLIC_HEADER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3797 \ RENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3798 \ RESOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3799 \ RPM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3800 \ RUNSTATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3801 \ RUNTIME_DEPENDENCIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3802 \ RUNTIME_DEPENDENCY_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3803 \ SBIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3804 \ SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3805 \ SETGID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3806 \ SETUID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3807 \ SHAREDSTATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3808 \ SOVERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3809 \ STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3810 \ SYSCONF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3811 \ TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3812 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3813 \ TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3814 \ USE_SOURCE_PERMISSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3815 \ VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3816 \ WORLD_EXECUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3817 \ WORLD_READ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3818 \ WORLD_WRITE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3819
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3820 syn keyword cmakeKWinstall_files contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3821 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3822 \ GLOB
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3823
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3824 syn keyword cmakeKWinstall_programs contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3825 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3826 \ GLOB
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3827 \ PROGRAMS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3828 \ TARGETS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3829
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3830 syn keyword cmakeKWinstall_targets contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3831 \ DLL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3832 \ RUNTIME_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3833
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3834 syn keyword cmakeKWlink_directories contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3835 \ AFTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3836 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3837 \ LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3838 \ ON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3839 \ ORIGIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3840 \ RPATH
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3841
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3842 syn keyword cmakeKWlist contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3843 \ ACTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3844 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3845 \ ASCENDING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3846 \ CASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3847 \ COMPARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3848 \ DESCENDING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3849 \ EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3850 \ FILE_BASENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3851 \ FILTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3852 \ FIND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3853 \ GENEX_STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3854 \ GET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3855 \ INCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3856 \ INSENSITIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3857 \ INSERT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3858 \ INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3859 \ JOIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3860 \ LENGTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3861 \ NATURAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3862 \ ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3863 \ OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3864 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3865 \ POP_BACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3866 \ POP_FRONT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3867 \ PREPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3868 \ REGEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3869 \ REMOVE_AT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3870 \ REMOVE_DUPLICATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3871 \ REMOVE_ITEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3872 \ REPLACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3873 \ REVERSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3874 \ SELECTOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3875 \ SENSITIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3876 \ SORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3877 \ STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3878 \ STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3879 \ SUBLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3880 \ TOLOWER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3881 \ TOUPPER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3882 \ TRANSFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3883 \ TRANSFORM_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3884 \ TRANSFORM_GENEX_STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3885 \ TRANSFORM_REPLACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3886 \ TRANSFORM_STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3887 \ TRANSFORM_TOLOWER
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3888
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3889 syn keyword cmakeKWload_cache contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3890 \ EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3891 \ INCLUDE_INTERNALS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3892 \ READ_WITH_PREFIX
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3893
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3894 syn keyword cmakeKWload_command contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3895 \ CMAKE_LOADED_COMMAND_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3896 \ COMMAND_NAME
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3897
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3898 syn keyword cmakeKWmacro contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3899 \ ARGC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3900 \ ARGN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3901 \ ARGV
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3902 \ CALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3903 \ DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3904 \ FOO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3905 \ GREATER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3906 \ LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3907 \ NOT
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3908
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3909 syn keyword cmakeKWmark_as_advanced contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3910 \ CLEAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3911 \ FORCE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3912
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3913 syn keyword cmakeKWmath contained
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3914 \ EXPR
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3915 \ HEXADECIMAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3916 \ OUTPUT_FORMAT
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3917
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3918 syn keyword cmakeKWmessage contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3919 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3920 \ AUTHOR_WARNING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3921 \ CHECK_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3922 \ CHECK_FAIL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3923 \ CHECK_PASS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3924 \ CHECK_START
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3925 \ CONFIGURE_LOG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3926 \ DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3927 \ DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3928 \ DEPRECATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3929 \ FATAL_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3930 \ GET_MESSAGE_LOG_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3931 \ GUI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3932 \ INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3933 \ MY_CHECK_RESULT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3934 \ NOTICE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3935 \ POP_BACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3936 \ SEND_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3937 \ STATUS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3938 \ TRACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3939 \ VERBOSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3940 \ WARNING
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3941
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3942 syn keyword cmakeKWoption contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3943 \ OFF
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3944
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3945 syn keyword cmakeKWproject contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3946 \ ASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3947 \ ASM_MARMASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3948 \ ASM_MASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3949 \ ASM_NASM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3950 \ ATT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3951 \ CMAKE_PROJECT_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3952 \ CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3953 \ DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3954 \ HIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3955 \ HOMEPAGE_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3956 \ ISPC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3957 \ LANGUAGES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3958 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3959 \ NONE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3960 \ OBJC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3961 \ OBJCXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3962 \ PROJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3963 \ VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3964 \ _BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3965 \ _DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3966 \ _HOMEPAGE_URL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3967 \ _INCLUDE_BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3968 \ _IS_TOP_LEVEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3969 \ _SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3970 \ _VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3971 \ _VERSION_MAJOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3972 \ _VERSION_MINOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3973 \ _VERSION_PATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3974 \ _VERSION_TWEAK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3975
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3976 syn keyword cmakeKWqt_wrap_cpp contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3977 \ AUTOMOC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3978
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3979 syn keyword cmakeKWqt_wrap_ui contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3980 \ AUTOUIC
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3981
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3982 syn keyword cmakeKWremove contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3983 \ VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3984 \ VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3985
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3986 syn keyword cmakeKWreturn contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3987 \ DEFER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3988 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3989 \ PROPAGATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3990 \ SCOPE_FOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3991 \ VARIABLES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3992 \ VERSION
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3993
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
3994 syn keyword cmakeKWseparate_arguments contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3995 \ MSDN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3996 \ NATIVE_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3997 \ PROGRAM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3998 \ SEPARATE_ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
3999 \ UNIX_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4000 \ WINDOWS_COMMAND
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4001
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4002 syn keyword cmakeKWset contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4003 \ BOOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4004 \ FILEPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4005 \ FORCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4006 \ INTERNAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4007 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4008 \ OLD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4009 \ ON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4010 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4011 \ PROPAGATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4012 \ STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4013 \ STRINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4014 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4015
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4016 syn keyword cmakeKWset_directory_properties contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4017 \ DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4018 \ PROPERTIES
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4019
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4020 syn keyword cmakeKWset_property contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4021 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4022 \ APPEND_STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4023 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4024 \ GENERATED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4025 \ GLOBAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4026 \ INHERITED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4027 \ INSTALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4028 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4029 \ PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4030 \ SOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4031 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4032 \ TARGET_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4033 \ TEST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4034 \ WIX
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4035
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4036 syn keyword cmakeKWset_source_files_properties contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4037 \ DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4038 \ GENERATED
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4039 \ PROPERTIES
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4040 \ SOURCE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4041 \ TARGET_DIRECTORY
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4042
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4043 syn keyword cmakeKWset_target_properties contained
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4044 \ PROPERTIES
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4045
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4046 syn keyword cmakeKWset_tests_properties contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4047 \ NAME
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4048 \ PROPERTIES
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4049
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4050 syn keyword cmakeKWsite_name contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4051 \ HOSTNAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4052
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4053 syn keyword cmakeKWsource_group contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4054 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4055 \ PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4056 \ REGULAR_EXPRESSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4057 \ TREE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4058
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4059 syn keyword cmakeKWstring contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4060 \ ALPHABET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4061 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4062 \ ARRAY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4063 \ ASCII
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4064 \ BOOLEAN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4065 \ CMAKE_MATCH_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4066 \ COMPARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4067 \ CONCAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4068 \ CONFIGURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4069 \ EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4070 \ ERROR_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4071 \ ESCAPE_QUOTES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4072 \ FIND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4073 \ GENEX_STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4074 \ GET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4075 \ GREATER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4076 \ GREATER_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4077 \ GUID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4078 \ HASH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4079 \ HEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4080 \ ISO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4081 \ JOIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4082 \ JSON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4083 \ LENGTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4084 \ LESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4085 \ LESS_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4086 \ MAKE_C_IDENTIFIER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4087 \ MATCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4088 \ MATCHALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4089 \ MATCHES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4090 \ MEMBER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4091 \ NAMESPACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4092 \ NOTEQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4093 \ NULL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4094 \ NUMBER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4095 \ OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4096 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4097 \ ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4098 \ PREPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4099 \ RANDOM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4100 \ RANDOM_SEED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4101 \ REGEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4102 \ REMOVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4103 \ REPEAT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4104 \ REPLACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4105 \ REVERSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4106 \ RFC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4107 \ SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4108 \ SHA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4109 \ SOURCE_DATE_EPOCH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4110 \ STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4111 \ SUBSTRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4112 \ SZ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4113 \ TIMESTAMP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4114 \ TOLOWER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4115 \ TOUPPER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4116 \ TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4117 \ US
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4118 \ UTC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4119 \ UUID
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4120
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4121 syn keyword cmakeKWsubdirs contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4122 \ EXCLUDE_FROM_ALL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4123 \ PREORDER
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4124
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4125 syn keyword cmakeKWtarget_compile_definitions contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4126 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4127 \ COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4128 \ FOO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4129 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4130 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4131 \ INTERFACE_COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4132 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4133 \ PUBLIC
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4134
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4135 syn keyword cmakeKWtarget_compile_features contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4136 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4137 \ COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4138 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4139 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4140 \ INTERFACE_COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4141 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4142 \ PUBLIC
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4143
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4144 syn keyword cmakeKWtarget_compile_options contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4145 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4146 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4147 \ CMAKE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4148 \ COMPILE_LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4149 \ COMPILE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4150 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4151 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4152 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4153 \ INTERFACE_COMPILE_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4154 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4155 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4156 \ SHELL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4157 \ UNIX_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4158 \ _FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4159 \ _FLAGS_
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4160
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4161 syn keyword cmakeKWtarget_include_directories contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4162 \ AFTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4163 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4164 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4165 \ BUILD_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4166 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4167 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4168 \ INSTALL_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4169 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4170 \ INTERFACE_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4171 \ INTERFACE_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4172 \ INTERFACE_SYSTEM_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4173 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4174 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4175 \ SYSTEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4176
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4177 syn keyword cmakeKWtarget_link_directories contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4178 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4179 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4180 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4181 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4182 \ INTERFACE_LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4183 \ LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4184 \ ORIGIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4185 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4186 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4187 \ RPATH
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4188
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4189 syn keyword cmakeKWtarget_link_libraries contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4190 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4191 \ DA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4192 \ DAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4193 \ DEBUG_CONFIGURATIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4194 \ DOBJ
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4195 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4196 \ IMPORTED_NO_SONAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4197 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4198 \ INTERFACE_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4199 \ LINK_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4200 \ LINK_INTERFACE_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4201 \ LINK_INTERFACE_LIBRARIES_DEBUG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4202 \ LINK_INTERFACE_MULTIPLICITY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4203 \ LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4204 \ LINK_PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4205 \ LINK_PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4206 \ OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4207 \ OLD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4208 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4209 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4210 \ SHARED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4211 \ STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4212 \ TARGET_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4213
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4214 syn keyword cmakeKWtarget_link_options contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4215 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4216 \ BEFORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4217 \ CMAKE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4218 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4219 \ CUDA_RESOLVE_DEVICE_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4220 \ CUDA_SEPARABLE_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4221 \ DEVICE_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4222 \ GCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4223 \ HOST_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4224 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4225 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4226 \ INTERFACE_LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4227 \ LANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4228 \ LINKER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4229 \ LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4230 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4231 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4232 \ SHELL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4233 \ STATIC_LIBRARY_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4234 \ UNIX_COMMAND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4235 \ _FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4236 \ _FLAGS_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4237 \ _LINKER_WRAPPER_FLAG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4238 \ _LINKER_WRAPPER_FLAG_SEP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4239
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4240 syn keyword cmakeKWtarget_precompile_headers contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4241 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4242 \ ANGLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4243 \ BUILD_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4244 \ COMPILE_LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4245 \ DISABLE_PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4246 \ EXPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4247 \ FI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4248 \ GCC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4249 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4250 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4251 \ INTERFACE_PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4252 \ PRECOMPILE_HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4253 \ PRECOMPILE_HEADERS_REUSE_FROM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4254 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4255 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4256 \ REUSE_FROM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4257 \ SKIP_PRECOMPILE_HEADERS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4258
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4259 syn keyword cmakeKWtarget_sources contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4260 \ ALIAS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4261 \ BASE_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4262 \ BUILD_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4263 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4264 \ CORRECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4265 \ CXX_MODULES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4266 \ CXX_MODULE_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4267 \ CXX_MODULE_DIRS_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4268 \ CXX_MODULE_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4269 \ CXX_MODULE_SET_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4270 \ EXPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4271 \ FILES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4272 \ FILE_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4273 \ FRAMEWORK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4274 \ HEADERS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4275 \ HEADER_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4276 \ HEADER_DIRS_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4277 \ HEADER_FILE_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4278 \ HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4279 \ HEADER_SET_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4280 \ IMPORTED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4281 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4282 \ INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4283 \ INTERFACE_CXX_MODULE_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4284 \ INTERFACE_HEADER_SETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4285 \ INTERFACE_INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4286 \ INTERFACE_SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4287 \ NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4288 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4289 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4290 \ SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4291 \ SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4292 \ TARGETS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4293 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4294 \ TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4295 \ WRONG
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4296
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4297 syn keyword cmakeKWtry_compile contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4298 \ ALL_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4299 \ BINARY_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4300 \ CMAKE_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4301 \ COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4302 \ COPY_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4303 \ COPY_FILE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4304 \ CUDA_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4305 \ CUDA_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4306 \ CUDA_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4307 \ CXX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4308 \ CXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4309 \ CXX_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4310 \ C_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4311 \ C_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4312 \ C_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4313 \ DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4314 \ DLINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4315 \ DVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4316 \ EXECUTABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4317 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4318 \ GHS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4319 \ HIP_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4320 \ HIP_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4321 \ HIP_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4322 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4323 \ LANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4324 \ LINK_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4325 \ LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4326 \ LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4327 \ LOG_DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4328 \ MULTI
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4329 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4330 \ NO_CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4331 \ NO_LOG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4332 \ OBJCXX_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4333 \ OBJCXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4334 \ OBJCXX_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4335 \ OBJC_EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4336 \ OBJC_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4337 \ OBJC_STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4338 \ OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4339 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4340 \ PROJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4341 \ RESULTVAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4342 \ SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4343 \ SOURCE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4344 \ SOURCE_FROM_CONTENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4345 \ SOURCE_FROM_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4346 \ SOURCE_FROM_VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4347 \ STATIC_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4348 \ STATIC_LIBRARY_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4349 \ TARGET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4350 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4351 \ TYPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4352 \ VALUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4353 \ _EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4354 \ _STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4355 \ _STANDARD_REQUIRED
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4356
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4357 syn keyword cmakeKWtry_run contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4358 \ ARGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4359 \ CMAKE_FLAGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4360 \ COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4361 \ COMPILE_OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4362 \ COPY_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4363 \ COPY_FILE_ERROR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4364 \ FAILED_TO_RUN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4365 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4366 \ LANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4367 \ LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4368 \ LINK_OPTIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4369 \ LOG_DESCRIPTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4370 \ NO_CACHE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4371 \ NO_LOG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4372 \ RUN_OUTPUT_STDERR_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4373 \ RUN_OUTPUT_STDOUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4374 \ RUN_OUTPUT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4375 \ SOURCES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4376 \ SOURCE_FROM_CONTENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4377 \ SOURCE_FROM_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4378 \ SOURCE_FROM_VAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4379 \ TRUE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4380 \ WORKING_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4381 \ _EXTENSIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4382 \ _STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4383 \ _STANDARD_REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4384 \ __TRYRUN_OUTPUT
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4385
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4386 syn keyword cmakeKWunset contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4387 \ PARENT_SCOPE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4388 \ VAR
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4389
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4390 syn keyword cmakeKWuse_mangled_mesa contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4391 \ GL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4392 \ OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4393 \ PATH_TO_MESA
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4394
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4395 syn keyword cmakeKWvariable_requires contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4396 \ RESULT_VARIABLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4397 \ TEST_VARIABLE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4398
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4399 syn keyword cmakeKWvariable_watch contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4400 \ APPEND
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4401 \ COMMAND
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4402 \ DEFINED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4403 \ MODIFIED_ACCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4404 \ READ_ACCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4405 \ REMOVED_ACCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4406 \ UNKNOWN_MODIFIED_ACCESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4407 \ UNKNOWN_READ_ACCESS
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4408
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4409 syn keyword cmakeKWwrite_file contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4410 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4411 \ CONFIGURE_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4412 \ NOTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4413 \ WRITE
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4414
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4415
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4416 syn keyword cmakeGeneratorExpressions contained
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4417 \ ABSOLUTE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4418 \ ACTION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4419 \ AIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4420 \ ANGLE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4421 \ APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4422 \ ARCHIVE_OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4423 \ ARCHIVE_OUTPUT_NAME_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4424 \ ASCENDING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4425 \ BAR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4426 \ BOOL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4427 \ BUILD_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4428 \ BUILD_LOCAL_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4429 \ CMAKE_LINK_GROUP_USING_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4430 \ CMAKE_LINK_LIBRARY_USING_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4431 \ CMAKE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4432 \ CODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4433 \ COMMAND_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4434 \ COMMAND_EXPAND_LISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4435 \ COMPARE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4436 \ COMPILE_DEFINITIONS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4437 \ COMPILE_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4438 \ COMPILE_LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4439 \ COMPILE_LANG_AND_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4440 \ COMPILE_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4441 \ COMPILING_CUDA
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4442 \ COMPILING_CXX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4443 \ COMPILING_CXX_WITH_CLANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4444 \ COMPILING_CXX_WITH_INTEL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4445 \ COMPILING_C_WITH_CLANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4446 \ CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4447 \ CONFIGURATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4448 \ CONTENT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4449 \ CUDA_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4450 \ CUDA_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4451 \ CUDA_RESOLVE_DEVICE_SYMBOLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4452 \ CUDA_SEPARABLE_COMPILATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4453 \ CUSTOM_KEYS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4454 \ CXX_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4455 \ CXX_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4456 \ CXX_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4457 \ CXX_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4458 \ C_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4459 \ C_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4460 \ C_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4461 \ DEBUG_MODE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4462 \ DEBUG_POSTFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4463 \ DENABLE_SOME_FEATURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4464 \ DESCENDING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4465 \ DEVICE_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4466 \ DLL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4467 \ ENABLE_EXPORTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4468 \ EXCLUDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4469 \ EXPORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4470 \ EXTENSION_DEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4471 \ FALSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4472 \ FILENAME_DEF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4473 \ FILE_BASENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4474 \ FILTER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4475 \ FIND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4476 \ FOO_EXTRA_THINGS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4477 \ GENERATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4478 \ GENEX_EVAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4479 \ GET_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4480 \ GET_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4481 \ GET_PARENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4482 \ GET_RELATIVE_PART
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4483 \ GET_ROOT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4484 \ GET_ROOT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4485 \ GET_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4486 \ GET_STEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4487 \ HAS_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4488 \ HAS_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4489 \ HAS_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4490 \ HAS_PARENT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4491 \ HAS_RELATIVE_PART
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4492 \ HAS_ROOT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4493 \ HAS_ROOT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4494 \ HAS_ROOT_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4495 \ HAS_STEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4496 \ HAVE_SOME_FEATURE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4497 \ HIP_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4498 \ HIP_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4499 \ HIP_STANDARD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4500 \ HOST_LINK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4501 \ IF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4502 \ IGNORE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4503 \ IMPORTED_LOCATION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4504 \ IMPORT_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4505 \ IMPORT_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4506 \ INCLUDE_DIRECTORIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4507 \ INSENSITIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4508 \ INSERT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4509 \ INSTALL_INTERFACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4510 \ INSTALL_NAME_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4511 \ INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4512 \ INSTALL_RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4513 \ INTERFACE_LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4514 \ INTERFACE_LINK_LIBRARIES_DIRECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4515 \ IN_LIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4516 \ ISPC_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4517 \ ISPC_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4518 \ IS_ABSOLUTE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4519 \ IS_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4520 \ IS_RELATIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4521 \ JOIN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4522 \ LANG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4523 \ LANG_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4524 \ LAST_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4525 \ LENGTH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4526 \ LIBRARY_OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4527 \ LIBRARY_OUTPUT_NAME_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4528 \ LINK_GROUP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4529 \ LINK_GROUP_PREDEFINED_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4530 \ LINK_LANGUAGE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4531 \ LINK_LANG_AND_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4532 \ LINK_LIBRARIES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4533 \ LINK_LIBRARY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4534 \ LINK_LIBRARY_OVERRIDE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4535 \ LINK_LIBRARY_OVERRIDE_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4536 \ LINK_LIBRARY_PREDEFINED_FEATURES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4537 \ LINK_ONLY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4538 \ LOWER_CASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4539 \ MAKE_C_IDENTIFIER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4540 \ MAP_IMPORTED_CONFIG_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4541 \ MODULE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4542 \ NATURAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4543 \ NO
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4544 \ NORMALIZE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4545 \ NORMAL_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4546 \ NOT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4547 \ OBJCXX_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4548 \ OBJCXX_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4549 \ OBJC_COMPILER_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4550 \ OBJC_COMPILER_VERSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4551 \ OBJECT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4552 \ OFF
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4553 \ OLD_COMPILER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4554 \ ORDER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4555 \ OUTPUT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4556 \ OUTPUT_CONFIG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4557 \ OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4558 \ OUTPUT_NAME_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4559 \ PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4560 \ PATH_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4561 \ PDB_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4562 \ PDB_NAME_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4563 \ PDB_OUTPUT_DIRECTORY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4564 \ PDB_OUTPUT_DIRECTORY_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4565 \ PLATFORM_ID
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4566 \ POP_BACK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4567 \ POP_FRONT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4568 \ POSIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4569 \ POST_BUILD
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4570 \ PREPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4571 \ PRIVATE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4572 \ PUBLIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4573 \ REGEX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4574 \ RELATIVE_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4575 \ REMOVE_AT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4576 \ REMOVE_DUPLICATES
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4577 \ REMOVE_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4578 \ REMOVE_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4579 \ REMOVE_ITEM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4580 \ REPLACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4581 \ REPLACE_EXTENSION
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4582 \ REPLACE_FILENAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4583 \ REQUIRED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4584 \ RESCAN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4585 \ REVERSE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4586 \ RPATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4587 \ RUNTIME_DEPENDENCY_SET
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4588 \ RUNTIME_OUTPUT_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4589 \ RUNTIME_OUTPUT_NAME_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4590 \ SCRIPT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4591 \ SDK
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4592 \ SELECTOR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4593 \ SEMICOLON
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4594 \ SENSITIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4595 \ SHARED
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4596 \ SHELL_PATH
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4597 \ SORT
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4598 \ STATIC
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4599 \ STREQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4600 \ STRING
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4601 \ STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4602 \ SUBLIST
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4603 \ TARGET_BUNDLE_CONTENT_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4604 \ TARGET_BUNDLE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4605 \ TARGET_BUNDLE_DIR_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4606 \ TARGET_EXISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4607 \ TARGET_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4608 \ TARGET_FILE_BASE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4609 \ TARGET_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4610 \ TARGET_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4611 \ TARGET_FILE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4612 \ TARGET_FILE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4613 \ TARGET_GENEX_EVAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4614 \ TARGET_IMPORT_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4615 \ TARGET_IMPORT_FILE_BASE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4616 \ TARGET_IMPORT_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4617 \ TARGET_IMPORT_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4618 \ TARGET_IMPORT_FILE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4619 \ TARGET_IMPORT_FILE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4620 \ TARGET_LINKER_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4621 \ TARGET_LINKER_FILE_BASE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4622 \ TARGET_LINKER_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4623 \ TARGET_LINKER_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4624 \ TARGET_LINKER_FILE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4625 \ TARGET_LINKER_FILE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4626 \ TARGET_LINKER_IMPORT_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4627 \ TARGET_LINKER_IMPORT_FILE_BASE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4628 \ TARGET_LINKER_IMPORT_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4629 \ TARGET_LINKER_IMPORT_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4630 \ TARGET_LINKER_IMPORT_FILE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4631 \ TARGET_LINKER_IMPORT_FILE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4632 \ TARGET_LINKER_LIBRARY_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4633 \ TARGET_LINKER_LIBRARY_FILE_BASE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4634 \ TARGET_LINKER_LIBRARY_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4635 \ TARGET_LINKER_LIBRARY_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4636 \ TARGET_LINKER_LIBRARY_FILE_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4637 \ TARGET_LINKER_LIBRARY_FILE_SUFFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4638 \ TARGET_NAME_IF_EXISTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4639 \ TARGET_OBJECTS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4640 \ TARGET_PDB_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4641 \ TARGET_PDB_FILE_BASE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4642 \ TARGET_PDB_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4643 \ TARGET_PDB_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4644 \ TARGET_POLICY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4645 \ TARGET_PROPERTY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4646 \ TARGET_RUNTIME_DLLS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4647 \ TARGET_RUNTIME_DLL_DIRS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4648 \ TARGET_SONAME_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4649 \ TARGET_SONAME_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4650 \ TARGET_SONAME_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4651 \ TARGET_SONAME_IMPORT_FILE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4652 \ TARGET_SONAME_IMPORT_FILE_DIR
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4653 \ TARGET_SONAME_IMPORT_FILE_NAME
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4654 \ TOLOWER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4655 \ TOUPPER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4656 \ TRANSFORM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4657 \ TRANSFORM_APPEND
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4658 \ TRANSFORM_REPLACE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4659 \ TRANSFORM_STRIP
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4660 \ TRANSFORM_TOLOWER
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4661 \ UNKNOWN
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4662 \ UPPER_CASE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4663 \ VERBATIM
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4664 \ VERSION_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4665 \ VERSION_GREATER_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4666 \ VERSION_LESS
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4667 \ VERSION_LESS_EQUAL
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4668 \ WHOLE_ARCHIVE
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4669 \ WRONG
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4670 \ _LINK_GROUP_USING_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4671 \ _LINK_LIBRARY_USING_
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4672 \ _POSTFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4673 \ _SUPPORTED
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4674
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4675 syn case ignore
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4676
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4677 syn keyword cmakeCommand
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4678 \ add_compile_definitions
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4679 \ add_compile_options
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4680 \ add_custom_command
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4681 \ add_custom_target
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4682 \ add_definitions
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4683 \ add_dependencies
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4684 \ add_executable
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4685 \ add_library
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4686 \ add_link_options
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4687 \ add_subdirectory
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4688 \ add_test
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4689 \ aux_source_directory
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4690 \ block
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4691 \ break
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4692 \ build_command
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4693 \ cmake_file_api
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4694 \ cmake_host_system_information
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4695 \ cmake_language
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4696 \ cmake_minimum_required
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4697 \ cmake_parse_arguments
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4698 \ cmake_path
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4699 \ cmake_policy
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4700 \ configure_file
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4701 \ continue
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4702 \ create_test_sourcelist
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4703 \ ctest_build
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4704 \ ctest_configure
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4705 \ ctest_coverage
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4706 \ ctest_empty_binary_directory
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4707 \ ctest_memcheck
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4708 \ ctest_read_custom_files
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4709 \ ctest_run_script
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4710 \ ctest_sleep
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4711 \ ctest_start
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4712 \ ctest_submit
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4713 \ ctest_test
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4714 \ ctest_update
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4715 \ ctest_upload
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4716 \ define_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4717 \ enable_language
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4718 \ enable_testing
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4719 \ endblock
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4720 \ endfunction
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4721 \ endmacro
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4722 \ execute_process
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4723 \ export
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4724 \ file
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4725 \ find_file
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4726 \ find_library
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4727 \ find_package
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4728 \ find_path
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4729 \ find_program
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4730 \ fltk_wrap_ui
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4731 \ function
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4732 \ get_cmake_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4733 \ get_directory_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4734 \ get_filename_component
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4735 \ get_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4736 \ get_source_file_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4737 \ get_target_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4738 \ get_test_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4739 \ include
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4740 \ include_directories
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4741 \ include_external_msproject
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4742 \ include_guard
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4743 \ include_regular_expression
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4744 \ install
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4745 \ link_directories
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4746 \ list
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4747 \ load_cache
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4748 \ load_command
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4749 \ macro
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4750 \ mark_as_advanced
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4751 \ math
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4752 \ message
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4753 \ option
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4754 \ project
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4755 \ qt_wrap_cpp
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4756 \ qt_wrap_ui
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4757 \ remove_definitions
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4758 \ return
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4759 \ separate_arguments
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4760 \ set
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4761 \ set_directory_properties
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4762 \ set_property
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4763 \ set_source_files_properties
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4764 \ set_target_properties
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4765 \ set_tests_properties
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4766 \ site_name
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4767 \ source_group
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4768 \ string
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4769 \ target_compile_definitions
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4770 \ target_compile_features
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4771 \ target_compile_options
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4772 \ target_include_directories
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4773 \ target_link_directories
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4774 \ target_link_libraries
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4775 \ target_link_options
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4776 \ target_precompile_headers
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4777 \ target_sources
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4778 \ try_compile
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4779 \ try_run
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4780 \ unset
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4781 \ variable_watch
2249
6d3d35ff2c2b Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
4782 \ nextgroup=cmakeArguments
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4783
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4784 syn keyword cmakeCommandConditional
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4785 \ else
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4786 \ elseif
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4787 \ endif
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4788 \ if
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4789 \ nextgroup=cmakeArguments
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4790
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4791 syn keyword cmakeCommandRepeat
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4792 \ endforeach
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4793 \ endwhile
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4794 \ foreach
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4795 \ while
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4796 \ nextgroup=cmakeArguments
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4797
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4798 syn keyword cmakeCommandDeprecated
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4799 \ build_name
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4800 \ exec_program
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4801 \ export_library_dependencies
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4802 \ install_files
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4803 \ install_programs
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4804 \ install_targets
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4805 \ link_libraries
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4806 \ make_directory
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4807 \ output_required_files
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4808 \ remove
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4809 \ subdir_depends
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4810 \ subdirs
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4811 \ use_mangled_mesa
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4812 \ utility_source
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4813 \ variable_requires
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4814 \ write_file
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4815 \ nextgroup=cmakeArguments
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4816
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4817 syn case match
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4818
7147
c590de398af9 commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents: 3557
diff changeset
4819 syn keyword cmakeTodo
c590de398af9 commit https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7
Christian Brabandt <cb@256bit.org>
parents: 3557
diff changeset
4820 \ TODO FIXME XXX
2249
6d3d35ff2c2b Use full path in undofile(). Updated docs.
Bram Moolenaar <bram@vim.org>
parents: 2034
diff changeset
4821 \ contained
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
4822
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4823 hi def link cmakeBracketArgument String
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4824 hi def link cmakeBracketComment Comment
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4825 hi def link cmakeCommand Function
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4826 hi def link cmakeCommandConditional Conditional
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4827 hi def link cmakeCommandDeprecated WarningMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4828 hi def link cmakeCommandRepeat Repeat
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
4829 hi def link cmakeComment Comment
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4830 hi def link cmakeEnvironment Special
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4831 hi def link cmakeEscaped Special
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4832 hi def link cmakeGeneratorExpression WarningMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4833 hi def link cmakeGeneratorExpressions Constant
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4834 hi def link cmakeModule Include
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4835 hi def link cmakeProperty Constant
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
4836 hi def link cmakeRegistry Underlined
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4837 hi def link cmakeString String
10051
46763b01cd9a commit https://github.com/vim/vim/commit/f37506f60f87d52a9e8850e30067645e2b13783c
Christian Brabandt <cb@256bit.org>
parents: 10048
diff changeset
4838 hi def link cmakeTodo TODO
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4839 hi def link cmakeVariableValue Type
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4840 hi def link cmakeVariable Identifier
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
4841
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4842 hi def link cmakeKWExternalProject ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4843 hi def link cmakeKWFetchContent ModeMsg
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4844 hi def link cmakeKWadd_compile_definitions ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4845 hi def link cmakeKWadd_compile_options ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4846 hi def link cmakeKWadd_custom_command ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4847 hi def link cmakeKWadd_custom_target ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4848 hi def link cmakeKWadd_definitions ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4849 hi def link cmakeKWadd_dependencies ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4850 hi def link cmakeKWadd_executable ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4851 hi def link cmakeKWadd_library ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4852 hi def link cmakeKWadd_link_options ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4853 hi def link cmakeKWadd_subdirectory ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4854 hi def link cmakeKWadd_test ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4855 hi def link cmakeKWblock ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4856 hi def link cmakeKWbuild_command ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4857 hi def link cmakeKWcmake_file_api ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4858 hi def link cmakeKWcmake_host_system_information ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4859 hi def link cmakeKWcmake_language ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4860 hi def link cmakeKWcmake_minimum_required ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4861 hi def link cmakeKWcmake_parse_arguments ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4862 hi def link cmakeKWcmake_path ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4863 hi def link cmakeKWcmake_policy ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4864 hi def link cmakeKWconfigure_file ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4865 hi def link cmakeKWcreate_test_sourcelist ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4866 hi def link cmakeKWctest_build ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4867 hi def link cmakeKWctest_configure ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4868 hi def link cmakeKWctest_coverage ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4869 hi def link cmakeKWctest_memcheck ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4870 hi def link cmakeKWctest_run_script ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4871 hi def link cmakeKWctest_start ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4872 hi def link cmakeKWctest_submit ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4873 hi def link cmakeKWctest_test ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4874 hi def link cmakeKWctest_update ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4875 hi def link cmakeKWctest_upload ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4876 hi def link cmakeKWdefine_property ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4877 hi def link cmakeKWdoxygen_add_docs ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4878 hi def link cmakeKWenable_language ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4879 hi def link cmakeKWenable_testing ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4880 hi def link cmakeKWexec_program ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4881 hi def link cmakeKWexecute_process ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4882 hi def link cmakeKWexport ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4883 hi def link cmakeKWexport_library_dependencies ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4884 hi def link cmakeKWfile ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4885 hi def link cmakeKWfind_file ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4886 hi def link cmakeKWfind_library ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4887 hi def link cmakeKWfind_package ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4888 hi def link cmakeKWfind_path ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4889 hi def link cmakeKWfind_program ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4890 hi def link cmakeKWfltk_wrap_ui ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4891 hi def link cmakeKWforeach ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4892 hi def link cmakeKWfunction ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4893 hi def link cmakeKWget_cmake_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4894 hi def link cmakeKWget_directory_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4895 hi def link cmakeKWget_filename_component ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4896 hi def link cmakeKWget_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4897 hi def link cmakeKWget_source_file_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4898 hi def link cmakeKWget_target_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4899 hi def link cmakeKWget_test_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4900 hi def link cmakeKWif ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4901 hi def link cmakeKWinclude ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4902 hi def link cmakeKWinclude_directories ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4903 hi def link cmakeKWinclude_external_msproject ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4904 hi def link cmakeKWinclude_guard ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4905 hi def link cmakeKWinstall ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4906 hi def link cmakeKWinstall_files ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4907 hi def link cmakeKWinstall_programs ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4908 hi def link cmakeKWinstall_targets ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4909 hi def link cmakeKWlink_directories ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4910 hi def link cmakeKWlist ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4911 hi def link cmakeKWload_cache ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4912 hi def link cmakeKWload_command ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4913 hi def link cmakeKWmacro ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4914 hi def link cmakeKWmark_as_advanced ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4915 hi def link cmakeKWmath ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4916 hi def link cmakeKWmessage ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4917 hi def link cmakeKWoption ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4918 hi def link cmakeKWproject ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4919 hi def link cmakeKWqt_wrap_cpp ModeMsg
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4920 hi def link cmakeKWqt_wrap_ui ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4921 hi def link cmakeKWremove ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4922 hi def link cmakeKWreturn ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4923 hi def link cmakeKWseparate_arguments ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4924 hi def link cmakeKWset ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4925 hi def link cmakeKWset_directory_properties ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4926 hi def link cmakeKWset_property ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4927 hi def link cmakeKWset_source_files_properties ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4928 hi def link cmakeKWset_target_properties ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4929 hi def link cmakeKWset_tests_properties ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4930 hi def link cmakeKWsite_name ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4931 hi def link cmakeKWsource_group ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4932 hi def link cmakeKWstring ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4933 hi def link cmakeKWsubdirs ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4934 hi def link cmakeKWtarget_compile_definitions ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4935 hi def link cmakeKWtarget_compile_features ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4936 hi def link cmakeKWtarget_compile_options ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4937 hi def link cmakeKWtarget_include_directories ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4938 hi def link cmakeKWtarget_link_directories ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4939 hi def link cmakeKWtarget_link_libraries ModeMsg
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4940 hi def link cmakeKWtarget_link_options ModeMsg
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4941 hi def link cmakeKWtarget_precompile_headers ModeMsg
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4942 hi def link cmakeKWtarget_sources ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4943 hi def link cmakeKWtry_compile ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4944 hi def link cmakeKWtry_run ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4945 hi def link cmakeKWunset ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4946 hi def link cmakeKWuse_mangled_mesa ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4947 hi def link cmakeKWvariable_requires ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4948 hi def link cmakeKWvariable_watch ModeMsg
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4949 hi def link cmakeKWwrite_file ModeMsg
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
4950
33946
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4951 " Manually added - difficult to parse out of documentation
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4952 syn case ignore
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4953
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4954 syn keyword cmakeCommandManuallyAdded
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4955 \ configure_package_config_file write_basic_package_version_file
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4956 \ nextgroup=cmakeArguments
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4957
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4958 syn case match
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4959
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4960 syn keyword cmakeKWconfigure_package_config_file contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4961 \ INSTALL_DESTINATION PATH_VARS NO_SET_AND_CHECK_MACRO NO_CHECK_REQUIRED_COMPONENTS_MACRO INSTALL_PREFIX
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4962
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4963 syn keyword cmakeKWconfigure_package_config_file_constants contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4964 \ AnyNewerVersion SameMajorVersion SameMinorVersion ExactVersion
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4965
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4966 syn keyword cmakeKWwrite_basic_package_version_file contained
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4967 \ VERSION COMPATIBILITY
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4968
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4969 hi def link cmakeCommandManuallyAdded Function
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4970
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4971 hi def link cmakeKWconfigure_package_config_file ModeMsg
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4972 hi def link cmakeKWwrite_basic_package_version_file ModeMsg
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4973 hi def link cmakeKWconfigure_package_config_file_constants Constant
c82f521e9a43 runtime(cmake): sync runtime files with upstream (#13597)
Christian Brabandt <cb@256bit.org>
parents: 32971
diff changeset
4974
836
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
4975 let b:current_syntax = "cmake"
5a7843c57316 updated for version 7.0e02
vimboss
parents:
diff changeset
4976
3496
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2249
diff changeset
4977 let &cpo = s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2249
diff changeset
4978 unlet s:keepcpo
d1e4abe8342c Fixed compatible mode in most runtime files.
Bram Moolenaar <bram@vim.org>
parents: 2249
diff changeset
4979
12499
d91cf2e26ef0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 10051
diff changeset
4980 " vim: set nowrap: