Skip to content

Commit 21b57d6

Browse files
committed
Fix more spelling errors of CXX_STANDARD_REQUIRED
1 parent 16036fc commit 21b57d6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

examples/unix/cmake/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,29 +40,29 @@ add_subdirectory ("../../.." "cryptolens-cpp")
4040
add_executable(example_activate ../example_activate.cpp)
4141
target_link_libraries(example_activate cryptolens)
4242
set_property(TARGET example_activate PROPERTY CXX_STANDARD 17)
43-
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQURED ON)
43+
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQUIRED ON)
4444
install(TARGETS example_activate DESTINATION bin)
4545

4646
add_executable(example_create_trial_key ../example_create_trial_key.cpp)
4747
target_link_libraries(example_create_trial_key cryptolens)
4848
set_property(TARGET example_create_trial_key PROPERTY CXX_STANDARD 17)
49-
set_property(TARGET example_create_trial_key PROPERTY CXX_STANDARD_REQURED ON)
49+
set_property(TARGET example_create_trial_key PROPERTY CXX_STANDARD_REQUIRED ON)
5050
install(TARGETS example_create_trial_key DESTINATION bin)
5151

5252
add_executable(example_external ../example_external.cpp)
5353
target_link_libraries(example_external cryptolens)
5454
set_property(TARGET example_external PROPERTY CXX_STANDARD 17)
55-
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQURED ON)
55+
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQUIRED ON)
5656
install(TARGETS example_external DESTINATION bin)
5757

5858
add_executable(example_floating ../example_floating.cpp)
5959
target_link_libraries(example_floating cryptolens)
6060
set_property(TARGET example_floating PROPERTY CXX_STANDARD 17)
61-
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQURED ON)
61+
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQUIRED ON)
6262
install(TARGETS example_floating DESTINATION bin)
6363

6464
add_executable(example_offline ../example_offline.cpp)
6565
target_link_libraries(example_offline cryptolens)
6666
set_property(TARGET example_offline PROPERTY CXX_STANDARD 17)
67-
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQURED ON)
67+
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQUIRED ON)
6868
install(TARGETS example_offline DESTINATION bin)

examples/unix/static_docker/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ target_include_directories (cryptolens PRIVATE "../../../include/cryptolens")
2424
target_include_directories (cryptolens PUBLIC "../../../include")
2525

2626
set_property (TARGET cryptolens PROPERTY CXX_STANDARD 11)
27-
set_property (TARGET cryptolens PROPERTY CXX_STANDARD_REQURED ON)
27+
set_property (TARGET cryptolens PROPERTY CXX_STANDARD_REQUIRED ON)

examples/unix/static_docker/cmake/CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ add_subdirectory (".." "cryptolens-cpp")
1313
add_executable(example_activate ../../example_activate.cpp)
1414
target_link_libraries(example_activate cryptolens)
1515
set_property(TARGET example_activate PROPERTY CXX_STANDARD 11)
16-
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQURED ON)
16+
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQUIRED ON)
1717

1818
add_executable(example_external ../../example_external.cpp)
1919
target_link_libraries(example_external cryptolens)
2020
set_property(TARGET example_external PROPERTY CXX_STANDARD 11)
21-
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQURED ON)
21+
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQUIRED ON)
2222

2323
add_executable(example_floating ../../example_floating.cpp)
2424
target_link_libraries(example_floating cryptolens)
2525
set_property(TARGET example_floating PROPERTY CXX_STANDARD 11)
26-
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQURED ON)
26+
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQUIRED ON)
2727

2828
add_executable(example_offline ../../example_offline.cpp)
2929
target_link_libraries(example_offline cryptolens)
3030
set_property(TARGET example_offline PROPERTY CXX_STANDARD 11)
31-
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQURED ON)
31+
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQUIRED ON)

0 commit comments

Comments
 (0)