-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename fuzz test and remove hardcoded path from example program
- Loading branch information
Showing
4 changed files
with
12 additions
and
11 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
find_package(fmt REQUIRED) | ||
|
||
add_compile_definitions(DATA_STORAGE_PATH="${CMAKE_SOURCE_DIR}/data") | ||
|
||
add_executable(main main.cpp) | ||
target_link_libraries(main PRIVATE cecxx fmt::fmt) | ||
set_target_properties(main PROPERTIES CXX_STANDARD 20) | ||
target_compile_options(main PRIVATE -Wall -Wextra -Wpedantic -O3) | ||
target_compile_options(main PRIVATE -Wall -Wextra -Wpedantic -Werror -O3) | ||
|
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
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