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:
Diffstat (limited to 'extern/glog/CMakeLists.txt')
-rw-r--r--extern/glog/CMakeLists.txt13
1 files changed, 9 insertions, 4 deletions
diff --git a/extern/glog/CMakeLists.txt b/extern/glog/CMakeLists.txt
index 15e6aff9714..df64718ee95 100644
--- a/extern/glog/CMakeLists.txt
+++ b/extern/glog/CMakeLists.txt
@@ -40,6 +40,7 @@ set(SRC
src/config.h
src/config_freebsd.h
+ src/config_haiku.h
src/config_hurd.h
src/config_linux.h
src/config_mac.h
@@ -72,17 +73,21 @@ if(WIN32)
src/windows
)
else()
+ list(APPEND INC
+ include
+ )
list(APPEND SRC
src/demangle.cc
src/signalhandler.cc
src/symbolize.cc
src/demangle.h
- src/glog/logging.h
- src/glog/log_severity.h
- src/glog/raw_logging.h
- src/glog/vlog_is_on.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()