aboutsummaryrefslogtreecommitdiff
path: root/src/makefile
diff options
context:
space:
mode:
authorjaroWMR <jarorutjes07@gmail.com>2024-11-07 18:39:56 +0100
committerjaroWMR <jarorutjes07@gmail.com>2024-11-07 18:39:56 +0100
commite2f3ace383b43cc3f140629e577b97c6f69c9856 (patch)
tree690eb146e11a4bc134840ec82bfbea4805daba61 /src/makefile
parent156906dca0b84d3fd3c889e1bcda12308b8fe793 (diff)
added physics system
Diffstat (limited to 'src/makefile')
-rw-r--r--src/makefile19
1 files changed, 8 insertions, 11 deletions
diff --git a/src/makefile b/src/makefile
index be1548c..2251119 100644
--- a/src/makefile
+++ b/src/makefile
@@ -41,16 +41,14 @@ TODO += crepe/api/CircleCollider.h
TODO += crepe/api/Color.cpp
TODO += crepe/api/Color.h
LOEK += crepe/api/Config.h
-TODO += crepe/api/Force.cpp
-TODO += crepe/api/Force.h
MAX += crepe/api/GameObject.cpp
MAX += crepe/api/GameObject.h
MAX += crepe/api/GameObject.hpp
TODO += crepe/api/ParticleEmitter.cpp
TODO += crepe/api/ParticleEmitter.h
-TODO += crepe/api/Point.h
-TODO += crepe/api/Rigidbody.cpp
-TODO += crepe/api/Rigidbody.h
+TODO += crepe/api/Vector2.h
+JARO += crepe/api/Rigidbody.cpp
+JARO += crepe/api/Rigidbody.h
LOEK += crepe/api/Script.cpp
LOEK += crepe/api/Script.h
LOEK += crepe/api/Script.hpp
@@ -60,8 +58,6 @@ TODO += crepe/api/Texture.cpp
TODO += crepe/api/Texture.h
MAX += crepe/api/Transform.cpp
MAX += crepe/api/Transform.h
-TODO += crepe/facade/SDLApp.cpp
-TODO += crepe/facade/SDLApp.h
TODO += crepe/facade/SDLContext.cpp
TODO += crepe/facade/SDLContext.h
LOEK += crepe/facade/Sound.cpp
@@ -72,8 +68,8 @@ TODO += crepe/system/CollisionSystem.cpp
TODO += crepe/system/CollisionSystem.h
TODO += crepe/system/ParticleSystem.cpp
TODO += crepe/system/ParticleSystem.h
-TODO += crepe/system/PhysicsSystem.cpp
-TODO += crepe/system/PhysicsSystem.h
+JARO += crepe/system/PhysicsSystem.cpp
+JARO += crepe/system/PhysicsSystem.h
TODO += crepe/system/RenderSystem.cpp
TODO += crepe/system/RenderSystem.h
LOEK += crepe/system/ScriptSystem.cpp
@@ -91,13 +87,14 @@ TODO += example/components_internal.cpp
MAX += example/ecs.cpp
LOEK += example/log.cpp
TODO += example/particle.cpp
-TODO += example/physics.cpp
+JARO += example/physics.cpp
TODO += example/rendering.cpp
LOEK += example/script.cpp
LOEK += test/audio.cpp
LOEK += test/dummy.cpp
+JARO += test/PhysicsTest.cpp
-FMT := $(MAX) #<<< CHANGE THIS TO YOUR NAME FOR STEP 2
+FMT := $(JARO) #<<< CHANGE THIS TO YOUR NAME FOR STEP 2
format: FORCE
clang-tidy -p build/compile_commands.json --fix-errors $(FMT)