-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeCXXCompiler.cmake
49 lines (49 loc) · 1.04 KB
/
CMakeCXXCompiler.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
set(CMAKE_CXX11_COMPILE_FEATURES
"
cxx_std_11;
cxx_alias_templates;
cxx_alignas;
cxx_alignof;
cxx_attributes;
cxx_auto_type;
cxx_constexpr;
cxx_decltype;
cxx_decltype_incomplete_return_types;
cxx_default_function_template_args;
cxx_defaulted_functions;
cxx_defaulted_move_initializers;
cxx_delegating_constructors;
cxx_deleted_functions;
cxx_enum_forward_declarations;
cxx_explicit_conversions;
cxx_extended_friend_declarations;
cxx_extern_templates;
cxx_final;cxx_func_identifier;
cxx_generalized_initializers;
cxx_inheriting_constructors;
cxx_inline_namespaces;
cxx_lambdas;
cxx_local_type_template_args;
cxx_long_long_type;
cxx_noexcept;
cxx_nonstatic_member_init;
cxx_nullptr;
cxx_override;
cxx_range_for;
cxx_raw_string_literals;
cxx_reference_qualified_functions;
cxx_right_angle_brackets;
cxx_rvalue_references;
cxx_sizeof_member;
cxx_static_assert;
cxx_strong_enums;
cxx_thread_local;
cxx_trailing_return_types;
cxx_unicode_literals;
cxx_uniform_initialization;
cxx_unrestricted_unions;
cxx_user_literals;
cxx_variadic_macros;
cxx_variadic_templates
"
)