diff options
author | rtk0c <[email protected]> | 2022-04-08 22:30:12 -0700 |
---|---|---|
committer | rtk0c <[email protected]> | 2022-04-08 22:30:12 -0700 |
commit | e7ef3f208c109357538b1f68af10bcd78db95c95 (patch) | |
tree | 066d614ae0f079e53602d7c0fd972998c546c8c1 /source/CMakeLists.txt | |
parent | f163e8f37123e651ea80b690793845b31ddb8639 (diff) |
Changeset: 3 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 +) |