diff options
author | hnOsmium0001 <[email protected]> | 2022-04-08 22:30:12 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-08 22:30:12 -0700 |
commit | e47a98793e58a5dbbe76bfed27e59408e43538e4 (patch) | |
tree | 250eb4c4200efb63c493ac6f4adb83c89be10ea1 /source/CMakeLists.txt | |
parent | 3fdc6eb4f2cbeffce9b250beec4d3a2d52a3f534 (diff) |
More work
Diffstat (limited to 'source/CMakeLists.txt')
-rw-r--r-- | source/CMakeLists.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 9a67cb5..7c47026 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -1,6 +1,7 @@ target_sources(${PROJECT_NAME} PRIVATE App.cpp + CpuMesh.cpp GameObject.cpp Level.cpp Material.cpp @@ -8,6 +9,23 @@ PRIVATE Player.cpp SceneThings.cpp Shader.cpp + SmallVector.cpp Texture.cpp World.cpp ) + +set(ProjectBrussel_SINGLE_UNIT_SRC + stb_implementation.c + main.cpp + Utils.cpp + EditorAccessories.cpp + EditorCore.cpp + EditorNotification.cpp + EditorResources.cpp +) +target_sources(${PROJECT_NAME} PRIVATE ${ProjectBrussel_SINGLE_UNIT_SRC}) +set_source_files_properties(${ProjectBrussel_SINGLE_UNIT_SRC} +TARGET_DIRECTORY ${PROJECT_NAME} +PROPERTIES + SKIP_UNITY_BUILD_INCLUSION ON +) |