diff options
author | Daniel Guzman <daniel.guzman85@gmail.com> | 2016-04-13 00:26:34 +0200 |
---|---|---|
committer | Daniel Guzman <daniel.guzman85@gmail.com> | 2016-04-13 00:26:34 +0200 |
commit | 1db0ab9d04e154345876c9ec7961063987198240 (patch) | |
tree | b95f68b1d3e36cd1d3969467d66498373fbc6540 | |
parent | 8f030a62a52c06896bd6c643a1e295267f2dd097 (diff) |
Fix ident.
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8760165..4e0cf73 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -147,9 +147,9 @@ if (ENTITYX_BUILD_SHARED) FOLDER entityx) set(install_libs entityx_shared) else() - add_library(entityx STATIC ${sources}) - set_target_properties(entityx PROPERTIES DEBUG_POSTFIX -d FOLDER entityx) - set(install_libs entityx) + add_library(entityx STATIC ${sources}) + set_target_properties(entityx PROPERTIES DEBUG_POSTFIX -d FOLDER entityx) + set(install_libs entityx) endif (ENTITYX_BUILD_SHARED) if (ENTITYX_BUILD_TESTING) @@ -199,5 +199,5 @@ install( TARGETS ${install_libs} LIBRARY DESTINATION "${libdir}" ARCHIVE DESTINATION "${libdir}" - RUNTIME DESTINATION "bin" + RUNTIME DESTINATION "bin" ) |