diff options
author | Alec Thomas <alec@swapoff.org> | 2012-10-24 17:24:11 -0400 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2012-10-24 17:24:11 -0400 |
commit | 37795d152797dab8afb272a210e8fa0f5541829c (patch) | |
tree | 515567ff278a78a88f8f933f4dcbeca19ebed837 | |
parent | fabb85ec3f30cf264587e4eb8cfa87efa75457b0 (diff) |
Name shared library entityx (rather than ..._shared).
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
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} |