diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 17:26:36 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-26 17:26:36 +0200 |
commit | 6781cee55a4e7f232eae3e5f2a652045412339ae (patch) | |
tree | 2bfd37fd36f4513d24c076051c64ee07608ddcf6 /backend | |
parent | c101364d4aafe50807cf7c8a831fb66eade3fb7f (diff) |
use cmake instead of make
Diffstat (limited to 'backend')
-rw-r--r-- | backend/CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/backend/CMakeLists.txt b/backend/CMakeLists.txt new file mode 100644 index 0000000..c9232f4 --- /dev/null +++ b/backend/CMakeLists.txt @@ -0,0 +1,7 @@ +target_sources(main PUBLIC + EnemyFactory.cpp + LocationFactory.cpp + Object.cpp + ObjectFactory.cpp +) + |