From 16b6c6305b29fc361e144bbea8918b2b6181641c Mon Sep 17 00:00:00 2001
From: Simon Walton <simon@highfidelity.io>
Date: Tue, 10 Dec 2019 09:46:35 -0800
Subject: [PATCH] Fix formatting issues in cmake file

---
 cmake/macros/TargetPolyvox.cmake | 17 ++++++++---------
 1 file changed, 8 insertions(+), 9 deletions(-)

diff --git a/cmake/macros/TargetPolyvox.cmake b/cmake/macros/TargetPolyvox.cmake
index ae31254af2..1779ab21f7 100644
--- a/cmake/macros/TargetPolyvox.cmake
+++ b/cmake/macros/TargetPolyvox.cmake
@@ -21,17 +21,16 @@ macro(TARGET_POLYVOX)
         list(APPEND POLYVOX_LIBRARY_DEBUG ${POLYVOX_UTIL_LIBRARY_DEBUG})
         select_library_configurations(POLYVOX)
         list(APPEND POLYVOX_INCLUDE_DIRS ${VCPKG_INSTALL_ROOT}/include)
-	if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
+        if (${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
             set(_LIB_GLOBS)
-	    if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
-		set(_PV_LIBRARIES ${POLYVOX_LIBRARY_DEBUG})
-	    else()
-		set(_PV_LIBRARIES ${POLYVOX_LIBRARY_RELEASE})
-	    endif()
-	    foreach(_lib ${_PV_LIBRARIES})
-             list(APPEND _LIB_GLOBS ${_lib}*)
+            if(${CMAKE_BUILD_TYPE} STREQUAL "Debug")
+                set(_PV_LIBRARIES ${POLYVOX_LIBRARY_DEBUG})
+            else()
+                set(_PV_LIBRARIES ${POLYVOX_LIBRARY_RELEASE})
+            endif()
+            foreach(_lib ${_PV_LIBRARIES})
+                list(APPEND _LIB_GLOBS ${_lib}*)
             endforeach()
-            message("_LIB_GLOBS=" ${_LIB_GLOBS})
             add_custom_command(
                 TARGET ${TARGET_NAME}
                 POST_BUILD