[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [42564] trunk/blender/extern/libmv/ CMakeLists.txt: missing config_freebsd.h from cmake file list

Campbell Barton ideasman42 at gmail.com
Sun Dec 11 01:53:42 CET 2011


Revision: 42564
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=42564
Author:   campbellbarton
Date:     2011-12-11 00:53:37 +0000 (Sun, 11 Dec 2011)
Log Message:
-----------
missing config_freebsd.h from cmake file list

Modified Paths:
--------------
    trunk/blender/extern/libmv/CMakeLists.txt

Modified: trunk/blender/extern/libmv/CMakeLists.txt
===================================================================
--- trunk/blender/extern/libmv/CMakeLists.txt	2011-12-11 00:01:04 UTC (rev 42563)
+++ trunk/blender/extern/libmv/CMakeLists.txt	2011-12-11 00:53:37 UTC (rev 42564)
@@ -148,23 +148,23 @@
 		third_party/glog/src/vlog_is_on.cc
 		third_party/glog/src/windows/port.cc
 
-		third_party/glog/src/utilities.h
+		third_party/glog/src/config.h
+		third_party/glog/src/stacktrace.h
 		third_party/glog/src/stacktrace_generic-inl.h
-		third_party/glog/src/stacktrace.h
+		third_party/glog/src/stacktrace_libunwind-inl.h
+		third_party/glog/src/stacktrace_powerpc-inl.h
+		third_party/glog/src/stacktrace_x86-inl.h
 		third_party/glog/src/stacktrace_x86_64-inl.h
+		third_party/glog/src/utilities.h
+		third_party/glog/src/base/commandlineflags.h
 		third_party/glog/src/base/googleinit.h
 		third_party/glog/src/base/mutex.h
-		third_party/glog/src/base/commandlineflags.h
-		third_party/glog/src/stacktrace_powerpc-inl.h
-		third_party/glog/src/stacktrace_x86-inl.h
-		third_party/glog/src/config.h
-		third_party/glog/src/stacktrace_libunwind-inl.h
+		third_party/glog/src/windows/config.h
+		third_party/glog/src/windows/port.h
+		third_party/glog/src/windows/glog/log_severity.h
+		third_party/glog/src/windows/glog/logging.h
 		third_party/glog/src/windows/glog/raw_logging.h
 		third_party/glog/src/windows/glog/vlog_is_on.h
-		third_party/glog/src/windows/glog/logging.h
-		third_party/glog/src/windows/glog/log_severity.h
-		third_party/glog/src/windows/port.h
-		third_party/glog/src/windows/config.h
 	)
 
 	list(APPEND INC
@@ -184,7 +184,7 @@
 			string(REPLACE "${FLAG}" "Od" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}")
 		endforeach()
 	endif()
-else(WIN32)
+else()
 	list(APPEND SRC
 		third_party/glog/src/utilities.cc
 		third_party/glog/src/symbolize.cc
@@ -194,25 +194,26 @@
 		third_party/glog/src/demangle.cc
 		third_party/glog/src/raw_logging.cc
 
-		third_party/glog/src/utilities.h
-		third_party/glog/src/stacktrace_generic-inl.h
+		third_party/glog/src/config.h
+		third_party/glog/src/config_freebsd.h
+		third_party/glog/src/config_linux.h
 		third_party/glog/src/config_mac.h
+		third_party/glog/src/demangle.h
 		third_party/glog/src/stacktrace.h
+		third_party/glog/src/stacktrace_generic-inl.h
+		third_party/glog/src/stacktrace_libunwind-inl.h
+		third_party/glog/src/stacktrace_powerpc-inl.h
+		third_party/glog/src/stacktrace_x86-inl.h
 		third_party/glog/src/stacktrace_x86_64-inl.h
 		third_party/glog/src/symbolize.h
+		third_party/glog/src/utilities.h
+		third_party/glog/src/base/commandlineflags.h
 		third_party/glog/src/base/googleinit.h
 		third_party/glog/src/base/mutex.h
-		third_party/glog/src/base/commandlineflags.h
-		third_party/glog/src/stacktrace_powerpc-inl.h
-		third_party/glog/src/stacktrace_x86-inl.h
-		third_party/glog/src/config.h
-		third_party/glog/src/demangle.h
-		third_party/glog/src/stacktrace_libunwind-inl.h
+		third_party/glog/src/glog/log_severity.h
+		third_party/glog/src/glog/logging.h
 		third_party/glog/src/glog/raw_logging.h
 		third_party/glog/src/glog/vlog_is_on.h
-		third_party/glog/src/glog/logging.h
-		third_party/glog/src/glog/log_severity.h
-		third_party/glog/src/config_linux.h
 	)
 
 	list(APPEND INC
@@ -220,6 +221,9 @@
 	)
 endif()
 
-add_definitions(-DV3DLIB_ENABLE_SUITESPARSE -DGOOGLE_GLOG_DLL_DECL=)
+add_definitions(
+	-DV3DLIB_ENABLE_SUITESPARSE
+	-DGOOGLE_GLOG_DLL_DECL=
+)
 
 blender_add_lib(extern_libmv "${SRC}" "${INC}" "${INC_SYS}")




More information about the Bf-blender-cvs mailing list