From 615a6605ab3f6048dc37a4bfd0e64f00c0401340 Mon Sep 17 00:00:00 2001 From: redstrate <54911369+redstrate@users.noreply.github.com> Date: Tue, 22 Sep 2020 13:02:26 -0400 Subject: [PATCH] Reorganize core dependencies --- engine/core/CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/engine/core/CMakeLists.txt b/engine/core/CMakeLists.txt index a5f11b8..31c8e36 100755 --- a/engine/core/CMakeLists.txt +++ b/engine/core/CMakeLists.txt @@ -36,16 +36,18 @@ target_include_directories(Core PUBLIC target_include_directories(Core SYSTEM PUBLIC ${CMAKE_BINARY_DIR}/_deps/bullet-src/src) target_link_libraries(Core PUBLIC + Asset + Math + Platform Utility + nlohmann_json + Log + PRIVATE GFX Renderer - nlohmann_json magic_enum imgui - Log ${EXTRA_LIBRARIES} - Asset - PRIVATE BulletDynamics BulletCollision LinearMath)