-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Connor Baker
committed
Jan 31, 2024
1 parent
d6e0cf9
commit dd0259f
Showing
2 changed files
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
add_executable(test_01 test_01.c) | ||
target_link_libraries(test_01 PRIVATE nanothread) | ||
add_test(NAME test_01 COMMAND test_01) | ||
|
||
add_executable(test_02 test_02.cpp) | ||
target_link_libraries(test_02 PRIVATE nanothread) | ||
target_compile_features(test_02 PRIVATE cxx_std_11) | ||
add_test(NAME test_02 COMMAND test_02) | ||
|
||
add_executable(test_03 test_03.cpp) | ||
target_link_libraries(test_03 PRIVATE nanothread) | ||
target_compile_features(test_03 PRIVATE cxx_std_14) | ||
add_test(NAME test_03 COMMAND test_03) | ||
|
||
add_executable(test_04 test_04.cpp) | ||
target_link_libraries(test_04 PRIVATE nanothread) | ||
target_compile_features(test_04 PRIVATE cxx_std_11) | ||
add_test(NAME test_04 COMMAND test_04) |