diff options
author | rtk0c <[email protected]> | 2022-04-25 20:22:07 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-25 20:22:07 -0700 |
commit | 855da86feae1a5cc14dc2d486ccf115f484dbc2e (patch) | |
tree | 8284c6a6bdfb1a919eb1a22f466f4180a329c7f3 /source/CMakeLists.txt | |
parent | d78a55de5003dbb040f1d1c369409e63a2c806d8 (diff) |
Changeset: 16 Initial work on rendering sprites to screen
Diffstat (limited to 'source/CMakeLists.txt')
-rw-r--r-- | source/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index f37d4a9..b4b6e3b 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -1,12 +1,15 @@ target_sources(${PROJECT_NAME} PRIVATE App.cpp - CpuMesh.cpp + Camera.cpp + CommonVertexIndex.cpp EditorAccessories.cpp EditorAttachmentImpl.cpp + EditorCommandPalette.cpp EditorCore.cpp EditorNotification.cpp EditorUtils.cpp + FuzzyMatch.cpp GameObject.cpp GraphicsTags.cpp Image.cpp @@ -22,6 +25,7 @@ PRIVATE Sprite.cpp Texture.cpp Uid.cpp + VertexIndex.cpp World.cpp ) |