Fix tabbing in CMakeLists.txt

In a recent format, the tabbing was made strange tabbing decisions.
Luckily, cmake-format doesn't change them after the fact when re-run, so
fix it.

Signed-off-by: Ed Tanous <ed.tanous@intel.com>
Change-Id: I95f21f47f84a917a1104d92f8f55603c70cd927c
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b93f342..dfac273 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -138,20 +138,20 @@
 set (
     CMAKE_CXX_FLAGS
     "${CMAKE_CXX_FLAGS} \
--Wall \
--Wextra \
--Wnon-virtual-dtor \
--Wold-style-cast \
--Wcast-align \
--Wunused \
--Woverloaded-virtual \
--Wpedantic \
--Wconversion \
--Wsign-conversion \
--Wnull-dereference \
--Wdouble-promotion \
--Wformat=2 \
--Wno-unused-parameter \
+    -Wall \
+    -Wextra \
+    -Wnon-virtual-dtor \
+    -Wold-style-cast \
+    -Wcast-align \
+    -Wunused \
+    -Woverloaded-virtual \
+    -Wpedantic \
+    -Wconversion \
+    -Wsign-conversion \
+    -Wnull-dereference \
+    -Wdouble-promotion \
+    -Wformat=2 \
+    -Wno-unused-parameter \
 "
 )
 
@@ -161,14 +161,14 @@
         set (
             CMAKE_CXX_FLAGS
             "${CMAKE_CXX_FLAGS} \
-        -Werror \
-        -Wduplicated-cond \
-        -Wduplicated-branches \
-        -Wlogical-op \
-        -Wnull-dereference \
-        -Wdouble-promotion \
-        -Wformat=2 \
-        -Wno-unused-parameter \
+            -Werror \
+            -Wduplicated-cond \
+            -Wduplicated-branches \
+            -Wlogical-op \
+            -Wnull-dereference \
+            -Wdouble-promotion \
+            -Wformat=2 \
+            -Wno-unused-parameter \
         "
         )
     endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0)