소스 검색

Indenting.

Former-commit-id: 971fb7f5381e2bf3f0862dec50dfe0222109bf85
Jérémie Dumas 7 년 전
부모
커밋
017a77d60c
1개의 변경된 파일8개의 추가작업 그리고 8개의 파일을 삭제
  1. 8 8
      shared/cmake/CXXFeatures.cmake

+ 8 - 8
shared/cmake/CXXFeatures.cmake

@@ -1,22 +1,22 @@
 ################################################################################
 
 if(NOT (${CMAKE_VERSION} VERSION_LESS "3.8.0"))
-	# For CMake 3.8 and above, we can use meta features directly provided by CMake itself
-    set(CXX11_FEATURES cxx_std_11)
-    set(CXX14_FEATURES cxx_std_14)
-    set(CXX17_FEATURES cxx_std_17)
-    return()
+  # For CMake 3.8 and above, we can use meta features directly provided by CMake itself
+  set(CXX11_FEATURES cxx_std_11)
+  set(CXX14_FEATURES cxx_std_14)
+  set(CXX17_FEATURES cxx_std_17)
+  return()
 endif()
 
 ################################################################################
 
 set(CXX11_FEATURES
-    cxx_auto_type
-    cxx_constexpr
+  cxx_auto_type
+  cxx_constexpr
 )
 
 set(CXX14_FEATURES
-    cxx_generic_lambdas
+  cxx_generic_lambdas
 )
 
 set(CXX17_FEATURES