From 4fba325b0f7c9be45367a6eb1ec3d7428b53ab99 Mon Sep 17 00:00:00 2001 From: Jack Andersen Date: Wed, 30 Mar 2016 16:44:12 -1000 Subject: [PATCH] Link-order fixes --- hecl/lib/Runtime/CMakeLists.txt | 4 ++-- hecl/test/CMakeLists.txt | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/hecl/lib/Runtime/CMakeLists.txt b/hecl/lib/Runtime/CMakeLists.txt index 90b839d70..e0e9326ad 100644 --- a/hecl/lib/Runtime/CMakeLists.txt +++ b/hecl/lib/Runtime/CMakeLists.txt @@ -1,4 +1,4 @@ add_library(hecl-runtime FileStoreManager.cpp - ShaderCacheManager.cpp - HMDL.cpp) + ShaderCacheManager.cpp) +add_library(hecl-hmdl HMDL.cpp) diff --git a/hecl/test/CMakeLists.txt b/hecl/test/CMakeLists.txt index 97c51ab98..c2d8b6502 100644 --- a/hecl/test/CMakeLists.txt +++ b/hecl/test/CMakeLists.txt @@ -1,4 +1,5 @@ add_executable(heclTest WIN32 main.cpp) target_link_libraries(heclTest - hecl-database hecl-runtime hecl-backend hecl-frontend hecl-blender hecl-common athena-core xxhash + hecl-database hecl-runtime hecl-backend hecl-frontend + hecl-hmdl hecl-blender hecl-common athena-core xxhash logvisor boo ${ZLIB_LIBRARIES} ${BOO_SYS_LIBS})