From 927e065f9829045247be7c0b3296408b6f577c1f Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 12 Jun 2022 13:44:58 +0200 Subject: feat: add reading RLE files --- src/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/CMakeLists.txt') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 52c5679..f6b27cb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -11,10 +11,12 @@ endfunction(target_link_libraries_system) file(GLOB SOURCES bootstrap.cpp util/color.cpp + util/fs.cpp game/game.cpp game/status_manager.cpp game/generation_tracker.cpp game/components/statusline.cpp + game/RLE_reader.cpp engine/engine.cpp engine/main.cpp engine/data/vector2.cpp @@ -47,7 +49,7 @@ target_compile_options( -Wsign-conversion -Wsign-promo -Wstrict-overflow=5 -Wswitch-default -Wundef -Werror - -pedantic -fsanitize=address -fno-exceptions -fno-omit-frame-pointer + -pedantic -fsanitize=address -fno-omit-frame-pointer ) if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") @@ -65,6 +67,7 @@ target_link_libraries_system( fmt::fmt-header-only GSL yacppdic + ctre ) target_link_options(${PROJECT_NAME} PRIVATE -fsanitize=address) -- cgit v1.2.3-18-g5258