Linux.pl
Opcje wyszukiwania podręcznika man:
Lista stron man zaczynających się od znaku:
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   Q   R   S   T   U   V   W   X   Y   Z   ALPHA   NUM   OTHER   ALL
CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally  CMake requires that all targets built in a project have glob-
       ally unique logical names (see policy CMP0002).  This is  necessary  to
       generate  meaningful project file names in Xcode and Visual Studio Gen-
       erators IDE generators.  It also allows the target names to  be  refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do  not  wish  to support Xcode or Visual Studio Generators IDE genera-
       tors, one may set this property to True to allow duplicate custom  tar-
       gets.   The  property allows multiple add_custom_target() command calls
       in different directories to specify the  same  target  name.   However,
       setting  this property will cause non-Makefile generators to produce an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files generated by AUTOMOC and AUTORCC are not always known at  config-
       ure   time   and   therefore   cant   be   passed   to  source_group().
       AUTOGEN_SOURCE_GROUP an be used instead to generate or select a  source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C compiler.  If the feature is available with the C com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  CUDA compiler.  If the feature is available with the C++
       compiler, it will be listed in  the  CMAKE_CUDA_COMPILE_FEATURES  vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C++ compiler.  If the feature is  available  with  the  C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally CMake requires that all targets built in a project have  glob-
       ally  unique  logical names (see policy CMP0002).  This is necessary to
       generate meaningful project file names in Xcode and Visual Studio  Gen-
       erators  IDE  generators.  It also allows the target names to be refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do not wish to support Xcode or Visual Studio  Generators  IDE  genera-
       tors,  one may set this property to True to allow duplicate custom tar-
       gets.  The property allows multiple add_custom_target()  command  calls
       in  different  directories  to  specify the same target name.  However,
       setting this property will cause non-Makefile generators to produce  an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files  generated by AUTOMOC and AUTORCC are not always known at config-
       ure  time   and   therefore   cant   be   passed   to   source_group().
       AUTOGEN_SOURCE_GROUP  an be used instead to generate or select a source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C compiler.  If the feature is available with  the  C  com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the CUDA compiler.  If the feature is available  with  the  C++
       compiler,  it  will  be listed in the CMAKE_CUDA_COMPILE_FEATURES vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C++  compiler.  If the feature is available with the C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally  CMake requires that all targets built in a project have glob-
       ally unique logical names (see policy CMP0002).  This is  necessary  to
       generate  meaningful project file names in Xcode and Visual Studio Gen-
       erators IDE generators.  It also allows the target names to  be  refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do  not  wish  to support Xcode or Visual Studio Generators IDE genera-
       tors, one may set this property to True to allow duplicate custom  tar-
       gets.   The  property allows multiple add_custom_target() command calls
       in different directories to specify the  same  target  name.   However,
       setting  this property will cause non-Makefile generators to produce an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files generated by AUTOMOC and AUTORCC are not always known at  config-
       ure   time   and   therefore   cant   be   passed   to  source_group().
       AUTOGEN_SOURCE_GROUP an be used instead to generate or select a  source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C compiler.  If the feature is available with the C com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  CUDA compiler.  If the feature is available with the C++
       compiler, it will be listed in  the  CMAKE_CUDA_COMPILE_FEATURES  vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C++ compiler.  If the feature is  available  with  the  C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally CMake requires that all targets built in a project have  glob-
       ally  unique  logical names (see policy CMP0002).  This is necessary to
       generate meaningful project file names in Xcode and Visual Studio  Gen-
       erators  IDE  generators.  It also allows the target names to be refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do not wish to support Xcode or Visual Studio  Generators  IDE  genera-
       tors,  one may set this property to True to allow duplicate custom tar-
       gets.  The property allows multiple add_custom_target()  command  calls
       in  different  directories  to  specify the same target name.  However,
       setting this property will cause non-Makefile generators to produce  an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files  generated by AUTOMOC and AUTORCC are not always known at config-
       ure  time   and   therefore   cant   be   passed   to   source_group().
       AUTOGEN_SOURCE_GROUP  an be used instead to generate or select a source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C compiler.  If the feature is available with  the  C  com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the CUDA compiler.  If the feature is available  with  the  C++
       compiler,  it  will  be listed in the CMAKE_CUDA_COMPILE_FEATURES vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C++  compiler.  If the feature is available with the C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally  CMake requires that all targets built in a project have glob-
       ally unique logical names (see policy CMP0002).  This is  necessary  to
       generate  meaningful project file names in Xcode and Visual Studio Gen-
       erators IDE generators.  It also allows the target names to  be  refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do  not  wish  to support Xcode or Visual Studio Generators IDE genera-
       tors, one may set this property to True to allow duplicate custom  tar-
       gets.   The  property allows multiple add_custom_target() command calls
       in different directories to specify the  same  target  name.   However,
       setting  this property will cause non-Makefile generators to produce an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files generated by AUTOMOC and AUTORCC are not always known at  config-
       ure   time   and   therefore   cant   be   passed   to  source_group().
       AUTOGEN_SOURCE_GROUP an be used instead to generate or select a  source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C compiler.  If the feature is available with the C com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  CUDA compiler.  If the feature is available with the C++
       compiler, it will be listed in  the  CMAKE_CUDA_COMPILE_FEATURES  vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C++ compiler.  If the feature is  available  with  the  C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally CMake requires that all targets built in a project have  glob-
       ally  unique  logical names (see policy CMP0002).  This is necessary to
       generate meaningful project file names in Xcode and Visual Studio  Gen-
       erators  IDE  generators.  It also allows the target names to be refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do not wish to support Xcode or Visual Studio  Generators  IDE  genera-
       tors,  one may set this property to True to allow duplicate custom tar-
       gets.  The property allows multiple add_custom_target()  command  calls
       in  different  directories  to  specify the same target name.  However,
       setting this property will cause non-Makefile generators to produce  an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files  generated by AUTOMOC and AUTORCC are not always known at config-
       ure  time   and   therefore   cant   be   passed   to   source_group().
       AUTOGEN_SOURCE_GROUP  an be used instead to generate or select a source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C compiler.  If the feature is available with  the  C  com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the CUDA compiler.  If the feature is available  with  the  C++
       compiler,  it  will  be listed in the CMAKE_CUDA_COMPILE_FEATURES vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C++  compiler.  If the feature is available with the C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally  CMake requires that all targets built in a project have glob-
       ally unique logical names (see policy CMP0002).  This is  necessary  to
       generate  meaningful project file names in Xcode and Visual Studio Gen-
       erators IDE generators.  It also allows the target names to  be  refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do  not  wish  to support Xcode or Visual Studio Generators IDE genera-
       tors, one may set this property to True to allow duplicate custom  tar-
       gets.   The  property allows multiple add_custom_target() command calls
       in different directories to specify the  same  target  name.   However,
       setting  this property will cause non-Makefile generators to produce an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files generated by AUTOMOC and AUTORCC are not always known at  config-
       ure   time   and   therefore   cant   be   passed   to  source_group().
       AUTOGEN_SOURCE_GROUP an be used instead to generate or select a  source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name of FOLDER for *_autogen targets that are  added  automatically  by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If  not  set,  CMake uses the FOLDER property of the parent target as a
       default value for this property.  See also the  documentation  for  the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When  set this is used instead of AUTOGEN_SOURCE_GROUP for files gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C compiler.  If the feature is available with the C com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  CUDA compiler.  If the feature is available with the C++
       compiler, it will be listed in  the  CMAKE_CUDA_COMPILE_FEATURES  vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C++ compiler.  If the feature is  available  with  the  C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

PROPERTIES OF GLOBAL SCOPE
   ALLOW_DUPLICATE_CUSTOM_TARGETS
       Allow duplicate custom targets to be created.

       Normally CMake requires that all targets built in a project have  glob-
       ally  unique  logical names (see policy CMP0002).  This is necessary to
       generate meaningful project file names in Xcode and Visual Studio  Gen-
       erators  IDE  generators.  It also allows the target names to be refer-
       enced unambiguously.

       Makefile generators are capable of supporting duplicate add_custom_tar-
       get() names.  For projects that care only about Makefile Generators and
       do not wish to support Xcode or Visual Studio  Generators  IDE  genera-
       tors,  one may set this property to True to allow duplicate custom tar-
       gets.  The property allows multiple add_custom_target()  command  calls
       in  different  directories  to  specify the same target name.  However,
       setting this property will cause non-Makefile generators to produce  an
       error and refuse to generate the project.

   AUTOGEN_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC and AUTORCC generated files.

       Files  generated by AUTOMOC and AUTORCC are not always known at config-
       ure  time   and   therefore   cant   be   passed   to   source_group().
       AUTOGEN_SOURCE_GROUP  an be used instead to generate or select a source
       group for AUTOMOC and AUTORCC generated files.

       For AUTOMOC and AUTORCC specific overrides see AUTOMOC_SOURCE_GROUP and
       AUTORCC_SOURCE_GROUP respectively.

   AUTOGEN_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTOMOC_SOURCE_GROUP
       Name of the  source_group() for AUTOMOC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTOMOC.

   AUTOMOC_TARGETS_FOLDER
       Name  of  FOLDER  for *_autogen targets that are added automatically by
       CMake for targets for which AUTOMOC is enabled.

       This property is obsolete.  Use AUTOGEN_TARGETS_FOLDER instead.

       If not set, CMake uses the FOLDER property of the parent  target  as  a
       default  value  for  this property.  See also the documentation for the
       FOLDER target property and the AUTOMOC target property.

   AUTORCC_SOURCE_GROUP
       Name of the  source_group() for AUTORCC generated files.

       When set this is used instead of AUTOGEN_SOURCE_GROUP for files  gener-
       ated by AUTORCC.

   CMAKE_C_KNOWN_FEATURES
       List of C features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the C compiler.  If the feature is available with  the  C  com-
       piler, it will be listed in the CMAKE_C_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.  See the cmake-compile-features(7) manual for  information  on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       c_std_90
              Compiler mode is at least C 90.

       c_std_99
              Compiler mode is at least C 99.

       c_std_11
              Compiler mode is at least C 11.

       c_function_prototypes
              Function prototypes, as defined in ISO/IEC 9899:1990.

       c_restrict
              restrict keyword, as defined in ISO/IEC 9899:1999.

       c_static_assert
              Static assert, as defined in ISO/IEC 9899:2011.

       c_variadic_macros
              Variadic macros, as defined in ISO/IEC 9899:1999.

   CMAKE_CUDA_KNOWN_FEATURES
       List of CUDA features known to this version of CMake.

       The  features  listed in this global property may be known to be avail-
       able to the CUDA compiler.  If the feature is available  with  the  C++
       compiler,  it  will  be listed in the CMAKE_CUDA_COMPILE_FEATURES vari-
       able.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cuda_std_03
              Compiler mode is at least CUDA/C++ 03.

       cuda_std_11
              Compiler mode is at least CUDA/C++ 11.

       cuda_std_14
              Compiler mode is at least CUDA/C++ 14.

       cuda_std_17
              Compiler mode is at least CUDA/C++ 17.

       cuda_std_20
              Compiler mode is at least CUDA/C++ 20.

   CMAKE_CXX_KNOWN_FEATURES
       List of C++ features known to this version of CMake.

       The features listed in this global property may be known to  be  avail-
       able  to  the  C++  compiler.  If the feature is available with the C++
       compiler, it will be listed in the CMAKE_CXX_COMPILE_FEATURES variable.

       The features listed here may be used with the target_compile_features()
       command.   See  the cmake-compile-features(7) manual for information on
       compile features and a list of supported compilers.

       The features known to this version of CMake are:

       cxx_std_98
              Compiler mode is at least C++ 98.

       cxx_std_11
              Compiler mode is at least C++ 11.

       cxx_std_14
              Compiler mode is at least C++ 14.

       cxx_std_17
              Compiler mode is at least C++ 17.

       cxx_std_20
              Compiler mode is at least C++ 20.

       cxx_aggregate_default_initializers
              Aggregate default initializers, as defined in N3605.

       cxx_alias_templates
              Template aliases, as defined in N2258.

       cxx_alignas
              Alignment control alignas, as defined in N2341.

       cxx_alignof
              Alignment control alignof, as defined in N2341.

       cxx_attributes
              Generic attributes, as defined in N2761.

       cxx_attribute_deprecated
              [[deprecated]] attribute, as defined in N3760.

       cxx_auto_type
              Automatic type deduction, as defined in N1984.

       cxx_binary_literals
              Binary literals, as defined in N3472.

       cxx_constexpr
              Constant expressions, as defined in N2235.

       cxx_contextual_conversions
              Contextual conversions, as defined in N3323.

       cxx_decltype_incomplete_return_types
              Decltype on incomplete return types, as defined in N3276.

       cxx_decltype
              Decltype, as defined in N2343.

       cxx_decltype_auto
              decltype(auto) semantics, as defined in N3638.

       cxx_default_function_template_args
              Default template arguments for function templates, as defined in
              DR226

       cxx_defaulted_functions
              Defaulted functions, as defined in N2346.

       cxx_defaulted_move_initializers
              Defaulted move initializers, as defined in N3053.

       cxx_delegating_constructors
              Delegating constructors, as defined in N1986.

       cxx_deleted_functions
              Deleted functions, as defined in N2346.

       cxx_digit_se.

CMAKE-PROPERTIES(7)                  CMake                 CMAKE-PROPERTIES(7)

NAME
       cmake-properties - CMake Properties Reference

3.18.4                        September 13, 2021           CMAKE-PROPERTIES(7)

Czas wygenerowania: 0.00028 sek.


Created with the man page lookup class by Andrew Collington.
Based on a C man page viewer by Vadim Pavlov
Unicode soft-hyphen fix (as used by RedHat) by Dan Edwards
Some optimisations by Eli Argon
Caching idea and code contribution by James Richardson

Copyright © 2003-2025 Linux.pl
Hosted by Hosting Linux.pl