Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-04-17 07:35:54 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-17 07:35:54 +0300
commit3076d95ba441cd32706a27d18922a30f8fd28b8a (patch)
tree1c4f33b41c3d6d94a738e598c95423cdcfa8a34d /extern/glog
parent91a9cd0a94000047248598394c41ac30f893f147 (diff)
Cleanup: use 2 space indentation for CMake
Diffstat (limited to 'extern/glog')
-rw-r--r--extern/glog/CMakeLists.txt118
1 files changed, 59 insertions, 59 deletions
diff --git a/extern/glog/CMakeLists.txt b/extern/glog/CMakeLists.txt
index 05a6590ea81..c60e30d0b48 100644
--- a/extern/glog/CMakeLists.txt
+++ b/extern/glog/CMakeLists.txt
@@ -19,81 +19,81 @@
# ***** END GPL LICENSE BLOCK *****
set(INC
- src
- ../gflags/src
+ src
+ ../gflags/src
)
set(INC_SYS
)
set(SRC
- src/logging.cc
- src/raw_logging.cc
- src/utilities.cc
- src/vlog_is_on.cc
-
- src/utilities.h
-
- src/config.h
- src/config_freebsd.h
- src/config_haiku.h
- src/config_hurd.h
- src/config_linux.h
- src/config_mac.h
-
- src/base/commandlineflags.h
- src/base/googleinit.h
- src/base/mutex.h
-
- src/stacktrace.h
- src/stacktrace_generic-inl.h
- src/stacktrace_libunwind-inl.h
- src/stacktrace_powerpc-inl.h
- src/stacktrace_x86_64-inl.h
- src/stacktrace_x86-inl.h
+ src/logging.cc
+ src/raw_logging.cc
+ src/utilities.cc
+ src/vlog_is_on.cc
+
+ src/utilities.h
+
+ src/config.h
+ src/config_freebsd.h
+ src/config_haiku.h
+ src/config_hurd.h
+ src/config_linux.h
+ src/config_mac.h
+
+ src/base/commandlineflags.h
+ src/base/googleinit.h
+ src/base/mutex.h
+
+ src/stacktrace.h
+ src/stacktrace_generic-inl.h
+ src/stacktrace_libunwind-inl.h
+ src/stacktrace_powerpc-inl.h
+ src/stacktrace_x86_64-inl.h
+ src/stacktrace_x86-inl.h
)
set(LIB
)
if(NOT WITH_SYSTEM_GFLAGS)
- list(APPEND LIB
- extern_gflags
- )
+ list(APPEND LIB
+ extern_gflags
+ )
endif()
if(WIN32)
- list(APPEND SRC
- src/windows/port.cc
-
- src/windows/glog/raw_logging.h
- src/windows/glog/vlog_is_on.h
- src/windows/glog/logging.h
- src/windows/glog/log_severity.h
- src/windows/port.h
- src/windows/config.h
- )
-
- list(APPEND INC
- src/windows
- )
+ list(APPEND SRC
+ src/windows/port.cc
+
+ src/windows/glog/raw_logging.h
+ src/windows/glog/vlog_is_on.h
+ src/windows/glog/logging.h
+ src/windows/glog/log_severity.h
+ src/windows/port.h
+ src/windows/config.h
+ )
+
+ list(APPEND INC
+ src/windows
+ )
else()
- list(APPEND INC
- include
- )
- list(APPEND SRC
- src/demangle.cc
- src/signalhandler.cc
- src/symbolize.cc
-
- src/demangle.h
- src/symbolize.h
-
- include/glog/logging.h
- include/glog/log_severity.h
- include/glog/raw_logging.h
- include/glog/vlog_is_on.h
- )
+ list(APPEND INC
+ include
+ )
+ list(APPEND SRC
+ src/demangle.cc
+ src/signalhandler.cc
+ src/symbolize.cc
+
+ src/demangle.h
+ src/symbolize.h
+
+ include/glog/logging.h
+ include/glog/log_severity.h
+ include/glog/raw_logging.h
+ include/glog/vlog_is_on.h
+ )
endif()
add_definitions(${GFLAGS_DEFINES})