]> code.bitgloo.com Git - clyne/entityx.git/commitdiff
Fix ident.
authorDaniel Guzman <daniel.guzman85@gmail.com>
Tue, 12 Apr 2016 22:26:34 +0000 (00:26 +0200)
committerDaniel Guzman <daniel.guzman85@gmail.com>
Tue, 12 Apr 2016 22:26:34 +0000 (00:26 +0200)
CMakeLists.txt

index 876016598d345539a91a2a981e5ad31cff6fc707..4e0cf732299438962da3373d5cadf9d44f62f5a9 100644 (file)
@@ -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"
     )