diff options
author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-02 15:57:59 +0200 |
---|---|---|
committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-10-02 15:57:59 +0200 |
commit | de2c2593f9f272c5151d74af4ff846fdd70a9bc7 (patch) | |
tree | 4001a60809734a60b75e39da5c994d9381b6efe2 /src/crepe/api/CMakeLists.txt | |
parent | 41bd601ef62d967c80cc0591eaf6b4290baae425 (diff) |
working resource manager and textures and sprite to new standard
Diffstat (limited to 'src/crepe/api/CMakeLists.txt')
-rw-r--r-- | src/crepe/api/CMakeLists.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/crepe/api/CMakeLists.txt b/src/crepe/api/CMakeLists.txt index 2cf0bcc..96b55cf 100644 --- a/src/crepe/api/CMakeLists.txt +++ b/src/crepe/api/CMakeLists.txt @@ -1,17 +1,18 @@ target_sources(crepe PUBLIC - #Image_asset.cpp #map_asset.cpp - #spritesheet.cpp - #resource_manager.cpp + spritesheet.cpp + resource_manager.cpp Resource.cpp + game.cpp ) target_sources(crepe PUBLIC FILE_SET HEADERS FILES Resource.h - #Image_asset.h + baseResource.h + game.h #map_asset.h - #spritesheet.h - #resource_manager.h + spritesheet.h + resource_manager.h Component.h AudioSource.h ) |