Skip to content

Commit

Permalink
Fix more spelling errors of CXX_STANDARD_REQUIRED
Browse files Browse the repository at this point in the history
  • Loading branch information
svedi committed Aug 29, 2022
1 parent 16036fc commit 21b57d6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions examples/unix/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,29 +40,29 @@ add_subdirectory ("../../.." "cryptolens-cpp")
add_executable(example_activate ../example_activate.cpp)
target_link_libraries(example_activate cryptolens)
set_property(TARGET example_activate PROPERTY CXX_STANDARD 17)
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQUIRED ON)
install(TARGETS example_activate DESTINATION bin)

add_executable(example_create_trial_key ../example_create_trial_key.cpp)
target_link_libraries(example_create_trial_key cryptolens)
set_property(TARGET example_create_trial_key PROPERTY CXX_STANDARD 17)
set_property(TARGET example_create_trial_key PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_create_trial_key PROPERTY CXX_STANDARD_REQUIRED ON)
install(TARGETS example_create_trial_key DESTINATION bin)

add_executable(example_external ../example_external.cpp)
target_link_libraries(example_external cryptolens)
set_property(TARGET example_external PROPERTY CXX_STANDARD 17)
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQUIRED ON)
install(TARGETS example_external DESTINATION bin)

add_executable(example_floating ../example_floating.cpp)
target_link_libraries(example_floating cryptolens)
set_property(TARGET example_floating PROPERTY CXX_STANDARD 17)
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQUIRED ON)
install(TARGETS example_floating DESTINATION bin)

add_executable(example_offline ../example_offline.cpp)
target_link_libraries(example_offline cryptolens)
set_property(TARGET example_offline PROPERTY CXX_STANDARD 17)
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQUIRED ON)
install(TARGETS example_offline DESTINATION bin)
2 changes: 1 addition & 1 deletion examples/unix/static_docker/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ target_include_directories (cryptolens PRIVATE "../../../include/cryptolens")
target_include_directories (cryptolens PUBLIC "../../../include")

set_property (TARGET cryptolens PROPERTY CXX_STANDARD 11)
set_property (TARGET cryptolens PROPERTY CXX_STANDARD_REQURED ON)
set_property (TARGET cryptolens PROPERTY CXX_STANDARD_REQUIRED ON)
8 changes: 4 additions & 4 deletions examples/unix/static_docker/cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ add_subdirectory (".." "cryptolens-cpp")
add_executable(example_activate ../../example_activate.cpp)
target_link_libraries(example_activate cryptolens)
set_property(TARGET example_activate PROPERTY CXX_STANDARD 11)
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_activate PROPERTY CXX_STANDARD_REQUIRED ON)

add_executable(example_external ../../example_external.cpp)
target_link_libraries(example_external cryptolens)
set_property(TARGET example_external PROPERTY CXX_STANDARD 11)
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_external PROPERTY CXX_STANDARD_REQUIRED ON)

add_executable(example_floating ../../example_floating.cpp)
target_link_libraries(example_floating cryptolens)
set_property(TARGET example_floating PROPERTY CXX_STANDARD 11)
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_floating PROPERTY CXX_STANDARD_REQUIRED ON)

add_executable(example_offline ../../example_offline.cpp)
target_link_libraries(example_offline cryptolens)
set_property(TARGET example_offline PROPERTY CXX_STANDARD 11)
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQURED ON)
set_property(TARGET example_offline PROPERTY CXX_STANDARD_REQUIRED ON)

0 comments on commit 21b57d6

Please sign in to comment.