]> git.lizzy.rs Git - nothing.git/blobdiff - CMakeLists.txt
(#213) Implement rigid_bodies data structure
[nothing.git] / CMakeLists.txt
index 8520f4921e5aa68678b5c18da737a96fd64863da..bb17c3764827939eaec32cb1cf9747591f957ab5 100644 (file)
@@ -18,55 +18,63 @@ include_directories(${SDL2_INCLUDE_DIR})
 include_directories(${SDL2_MIXER_INCLUDE_DIR})
 
 set(SOURCE_FILES
-  src/main.c
-  src/game/level/player.c
-  src/game/level/platforms.c
-  src/rect.c
-  src/point.c
-  src/game/level/camera.c
-  src/error.c
+  src/color.c
   src/game.c
-  src/lt.c
-  src/lt/lt_slot.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/renderer.c
-  src/triangle.c
-  src/color.c
-  src/rigid_rect.c
-  src/dying_rect.c
   src/game/level/lava.c
-  src/wavy_rect.c
-  src/game/sound_medium.c
-  src/path.c
-  src/mat3x3.c
-  src/algo.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/rigid_bodies.c
+  src/sdl/renderer.c
+  src/system/error.c
+  src/system/lt.c
+  src/system/lt/lt_adapters.c
+  src/system/lt/lt_slot.c
 )
 
 set(HEADER_FILES
-  src/game/level/player.h
-  src/game/level/platforms.h
-  src/rect.h
-  src/point.h
-  src/game/level/camera.h
-  src/error.h
+  src/color.h
   src/game.h
-  src/lt.h
-  src/lt/lt_slot.h
+  src/game/camera.h
   src/game/level.h
+  src/game/level/background.h
+  src/game/level/boxes.h
   src/game/level/goals.h
-  src/renderer.h
-  src/triangle.h
-  src/pi.h
-  src/color.h
-  src/rigid_rect.h
-  src/dying_rect.h
   src/game/level/lava.h
-  src/wavy_rect.h
-  src/game/sound_medium.h
-  src/path.h
-  src/mat3x3.h
-  src/algo.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/rigid_bodies.h
+  src/sdl/renderer.h
+  src/system/error.h
+  src/system/lt.h
+  src/system/lt/lt_adapters.h
+  src/system/lt/lt_slot.h
 )
 
 add_executable(nothing ${SOURCE_FILES} ${HEADER_FILES})
@@ -96,6 +104,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 \