From 37795d152797dab8afb272a210e8fa0f5541829c Mon Sep 17 00:00:00 2001 From: Alec Thomas Date: Wed, 24 Oct 2012 17:24:11 -0400 Subject: Name shared library entityx (rather than ..._shared). --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index afb3146..1da9770 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,6 +62,7 @@ set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-O2 -g") set(sources entityx/Components.cc entityx/System.cc entityx/Event.cc entityx/Entity.cc entityx/Manager.cc) add_library(entityx STATIC ${sources}) add_library(entityx_shared SHARED ${sources}) +set_target_properties(entityx_shared PROPERTIES OUTPUT_NAME entityx) include_directories( ${Boost_INCLUDE_DIR} -- cgit v1.2.3