X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=CMakeLists.txt;h=40691bf02a2d2f27f58dc8b6a011f258c373578f;hb=4b34156f90636c73df028956cc557d15d3b66491;hp=2c336742ff17a414cb22a5d02f9a61f87e8c3557;hpb=d8ed814d2b6e70a3ff1b7ba96f936795b0b18c0e;p=nothing.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c336742..40691bf0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,37 +11,70 @@ set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) find_package(SDL2 REQUIRED) +find_package(SDL2_mixer REQUIRED) + +include_directories(src/) include_directories(${SDL2_INCLUDE_DIR}) +include_directories(${SDL2_MIXER_INCLUDE_DIR}) set(SOURCE_FILES - src/main.c - src/player.c - src/platforms.c - src/rect.c - src/point.c - src/camera.c - src/error.c + src/color.c src/game.c - src/lt.c - src/lt/lt_slot.c - src/level.c + src/game/camera.c + src/game/level.c + src/game/level/background.c + src/game/level/boxes.c + src/game/level/goals.c + src/game/level/lava.c + src/game/level/lava/wavy_rect.c + src/game/level/platforms.c + src/game/level/player.c + src/game/level/player/dying_rect.c + src/game/level/player/rigid_rect.c + src/game/level/solid.c + src/game/sound_samples.c + src/main.c + src/math/mat3x3.c + src/math/point.c + src/math/rand.c + src/math/rect.c + src/math/triangle.c + src/sdl/renderer.c + src/system/error.c + src/system/lt.c + src/system/lt/lt_slot.c ) set(HEADER_FILES - src/player.h - src/platforms.h - src/rect.h - src/point.h - src/camera.h - src/error.h + src/color.h src/game.h - src/lt.h - src/lt/lt_slot.h - src/level.h + src/game/level/boxes.h + src/game/camera.h + src/game/level.h + src/game/level/background.h + src/game/level/goals.h + src/game/level/lava.h + src/game/level/lava/wavy_rect.h + src/game/level/platforms.h + src/game/level/player.h + src/game/level/player/dying_rect.h + src/game/level/player/rigid_rect.h + src/game/level/solid.h + src/game/sound_samples.h + src/math/mat3x3.h + src/math/pi.h + src/math/point.h + src/math/rand.h + src/math/rect.h + src/math/triangle.h + src/sdl/renderer.h + src/system/error.h + src/system/lt.h + src/system/lt/lt_slot.h ) add_executable(nothing ${SOURCE_FILES} ${HEADER_FILES}) -target_link_libraries(nothing ${SDL2_LIBRARY}) +target_link_libraries(nothing ${SDL2_LIBRARY} ${SDL2_MIXER_LIBRARY}) if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "CLANG")) set(CMAKE_C_FLAGS @@ -67,6 +100,7 @@ if(("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") OR ("${CMAKE_CXX_COMPILER_ID}" ST -Wshadow \ -Wstrict-prototypes \ -Wwrite-strings \ + -Wswitch \ -fno-common \ -pedantic \ -std=c11 \ @@ -76,3 +110,5 @@ endif() if(WIN32) target_link_libraries(nothing Imm32 Version winmm) endif() + +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/sounds DESTINATION ${CMAKE_CURRENT_BINARY_DIR})