@@ -15,6 +15,7 @@ add_bigobj_flag(validation_tests)
15
15
gtest_add_tests (TARGET validation_tests )
16
16
17
17
add_executable (today_tests TodayTests.cpp )
18
+ target_compile_features (today_tests PRIVATE cxx_std_20 )
18
19
target_link_libraries (today_tests PRIVATE
19
20
todaygraphql
20
21
graphqljson
@@ -24,6 +25,7 @@ add_bigobj_flag(today_tests)
24
25
gtest_add_tests (TARGET today_tests )
25
26
26
27
add_executable (coroutine_tests CoroutineTests.cpp )
28
+ target_compile_features (coroutine_tests PRIVATE cxx_std_20 )
27
29
target_link_libraries (coroutine_tests PRIVATE
28
30
todaygraphql
29
31
graphqljson
@@ -32,6 +34,7 @@ target_link_libraries(coroutine_tests PRIVATE
32
34
gtest_add_tests (TARGET coroutine_tests )
33
35
34
36
add_executable (client_tests ClientTests.cpp )
37
+ target_compile_features (client_tests PRIVATE cxx_std_20 )
35
38
target_link_libraries (client_tests PRIVATE
36
39
todaygraphql
37
40
query_client
@@ -43,6 +46,7 @@ add_bigobj_flag(client_tests)
43
46
gtest_add_tests (TARGET client_tests )
44
47
45
48
add_executable (nointrospection_tests NoIntrospectionTests.cpp )
49
+ target_compile_features (nointrospection_tests PRIVATE cxx_std_20 )
46
50
target_link_libraries (nointrospection_tests PRIVATE
47
51
todaygraphql_nointrospection
48
52
graphqljson
@@ -52,6 +56,7 @@ add_bigobj_flag(nointrospection_tests)
52
56
gtest_add_tests (TARGET nointrospection_tests )
53
57
54
58
add_executable (argument_tests ArgumentTests.cpp )
59
+ target_compile_features (argument_tests PRIVATE cxx_std_20 )
55
60
target_link_libraries (argument_tests PRIVATE
56
61
todaygraphql
57
62
graphqljson
0 commit comments