diff options
| author | Bond_009 <bond.009@outlook.com> | 2020-12-20 16:39:38 +0100 |
|---|---|---|
| committer | Bond_009 <bond.009@outlook.com> | 2020-12-20 16:39:38 +0100 |
| commit | 68f415926d8ef16b571b6be9692447e82efd101d (patch) | |
| tree | 0fed2aaaf82c9fb92a91fa8725a790353e6baeb6 | |
| parent | 59443d517e974475c88b804824dad3a1430b4d71 (diff) | |
Fix compile for gcc
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 30942d6..5d92253 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,7 +5,7 @@ set(SOURCES ifo_dump.c) # Add the executable add_executable(ifo_dump ${SOURCES}) -target_compile_options(ifo_dump PUBLIC -std=c89 -Wall -Wextra -Weverything -Wstrict-aliasing -pedantic -fstrict-aliasing) +target_compile_options(ifo_dump PUBLIC -std=c89 -Wall -Wextra -Wstrict-aliasing -pedantic -fstrict-aliasing) # Include libdvdread target_link_libraries(ifo_dump dvdread) |
