[Bf-blender-cvs] [edc1b016751] master: CMake: add libs needed for gtests

Campbell Barton noreply at git.blender.org
Tue Apr 16 08:07:25 CEST 2019


Commit: edc1b0167518a7c5b73b948fcb3a74da20343fb5
Author: Campbell Barton
Date:   Tue Apr 16 08:07:01 2019 +0200
Branches: master
https://developer.blender.org/rBedc1b0167518a7c5b73b948fcb3a74da20343fb5

CMake: add libs needed for gtests

===================================================================

M	source/blender/alembic/CMakeLists.txt
M	source/blender/blenkernel/CMakeLists.txt
M	source/blender/bmesh/CMakeLists.txt
M	source/blender/draw/CMakeLists.txt
M	source/blender/imbuf/CMakeLists.txt
M	source/blender/makesrna/intern/CMakeLists.txt

===================================================================

diff --git a/source/blender/alembic/CMakeLists.txt b/source/blender/alembic/CMakeLists.txt
index e6badc27110..9f94c118492 100644
--- a/source/blender/alembic/CMakeLists.txt
+++ b/source/blender/alembic/CMakeLists.txt
@@ -73,6 +73,8 @@ set(SRC
 )
 
 set(LIB
+	bf_blenkernel
+	bf_blenlib
 )
 
 if(WITH_ALEMBIC_HDF5)
diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt
index 33c0d435c69..36be6f360ec 100644
--- a/source/blender/blenkernel/CMakeLists.txt
+++ b/source/blender/blenkernel/CMakeLists.txt
@@ -366,6 +366,7 @@ set(LIB
 	bf_gpu
 	bf_ikplugin
 	bf_imbuf
+	bf_intern_clog
 	bf_intern_ghost
 	bf_intern_guardedalloc
 	bf_intern_libmv  # Uses stub when disabled.
@@ -384,6 +385,9 @@ if(WITH_BINRELOC)
 	list(APPEND INC_SYS
 		${BINRELOC_INCLUDE_DIRS}
 	)
+	list(APPEND LIB
+		extern_binreloc
+	)
 	add_definitions(-DWITH_BINRELOC)
 endif()
 
diff --git a/source/blender/bmesh/CMakeLists.txt b/source/blender/bmesh/CMakeLists.txt
index 7e34d1e7f04..04e44585a4f 100644
--- a/source/blender/bmesh/CMakeLists.txt
+++ b/source/blender/bmesh/CMakeLists.txt
@@ -164,6 +164,8 @@ set(SRC
 )
 
 set(LIB
+	bf_blenkernel
+	bf_blenlib
 	extern_rangetree
 )
 
diff --git a/source/blender/draw/CMakeLists.txt b/source/blender/draw/CMakeLists.txt
index a01e247cfe8..91ea4d79a32 100644
--- a/source/blender/draw/CMakeLists.txt
+++ b/source/blender/draw/CMakeLists.txt
@@ -154,6 +154,7 @@ set(SRC
 set(LIB
 	bf_blenkernel
 	bf_blenlib
+	bf_windowmanager
 )
 
 data_to_c_simple(engines/eevee/shaders/ambient_occlusion_lib.glsl SRC)
diff --git a/source/blender/imbuf/CMakeLists.txt b/source/blender/imbuf/CMakeLists.txt
index 5d859717e33..a52c72f8ecd 100644
--- a/source/blender/imbuf/CMakeLists.txt
+++ b/source/blender/imbuf/CMakeLists.txt
@@ -89,6 +89,7 @@ set(LIB
 	bf_blenloader
 	bf_intern_guardedalloc
 	bf_intern_memutil
+	bf_intern_opencolorio
 )
 
 if(WITH_IMAGE_OPENEXR)
diff --git a/source/blender/makesrna/intern/CMakeLists.txt b/source/blender/makesrna/intern/CMakeLists.txt
index 81ea7c03b86..4d8907cabd7 100644
--- a/source/blender/makesrna/intern/CMakeLists.txt
+++ b/source/blender/makesrna/intern/CMakeLists.txt
@@ -373,6 +373,7 @@ set(SRC
 )
 
 set(LIB
+	bf_dna
 	bf_editor_armature
 	bf_editor_curve
 	bf_editor_gizmo_library



More information about the Bf-blender-cvs mailing list