aboutsummaryrefslogtreecommitdiff
path: root/source/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'source/CMakeLists.txt')
-rw-r--r--source/CMakeLists.txt18
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
+)