From: Alec Thomas Date: Wed, 24 Oct 2012 21:24:11 +0000 (-0400) Subject: Name shared library entityx (rather than ..._shared). X-Git-Url: https://code.bitgloo.com/?a=commitdiff_plain;h=37795d152797dab8afb272a210e8fa0f5541829c;p=clyne%2Fentityx.git Name shared library entityx (rather than ..._shared). --- 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}