File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ clang-tidy: $(BUILD)/compile_commands.json
118118 run-clang-tidy -p $(BUILD ) tests examples
119119
120120codespell :
121- codespell -L statics,snd,copyable,cancelled
121+ codespell -w
122122
123123format : cmake-format clang-format
124124
Original file line number Diff line number Diff line change 55
66include (GNUInstallDirs)
77
8+ find_package(Threads REQUIRED)
9+
810add_library(beman.execution STATIC)
911add_library(beman ::execution ALIAS beman.execution)
1012
@@ -189,11 +191,7 @@ get_property(DETAIL_HEADER_FILES TARGET beman.execution PROPERTY HEADER_SET_bema
189191source_group("Header Files\\detail" FILES ${DETAIL_HEADER_FILES})
190192
191193set_target_properties(beman.execution PROPERTIES VERIFY_INTERFACE_HEADER_SETS ON)
192-
193- target_compile_features(beman.execution PUBLIC
194- "$<$< COMPILE_FEATURES :cxx_std_26>:cxx_std_26>"
195- "$<$< NOT :$< COMPILE_FEATURES:cxx_std_26>>:cxx_std_23>"
196- )
194+ target_link_libraries(beman.execution PUBLIC Threads ::Threads)
197195
198196install(
199197 TARGETS beman.execution COMPONENT beman.execution
You can’t perform that action at this time.
0 commit comments