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-16 07:18:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-04-16 07:20:52 +0300
commit5498e7f193e2399b8693ef17803f864103307b4b (patch)
treec72b53e0d0f3fe1e5f4706c207917a7cbcaa18d7 /source/blender/blenkernel/CMakeLists.txt
parent813e470eac309a78d1f8cdc4a3abb0314b0ee5f3 (diff)
CMake: add library deps to CMakeLists.txt
Tested to work on Linux and macOS. This will be enabled once all platforms are verified. See D4684
Diffstat (limited to 'source/blender/blenkernel/CMakeLists.txt')
-rw-r--r--source/blender/blenkernel/CMakeLists.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt
index 390ac51e470..696d252c81d 100644
--- a/source/blender/blenkernel/CMakeLists.txt
+++ b/source/blender/blenkernel/CMakeLists.txt
@@ -355,6 +355,31 @@ set(SRC
)
set(LIB
+ bf_editor_animation # FIXME, bad level (compare_ak_cfraPtr)
+
+ bf_blenfont
+ bf_blenlib
+ bf_blenloader
+ bf_blentranslation
+ bf_bmesh
+ bf_depsgraph
+ bf_draw
+ bf_gpencil_modifiers
+ bf_gpu
+ bf_ikplugin
+ bf_imbuf
+ bf_intern_ghost
+ bf_intern_guardedalloc
+ bf_intern_libmv # Uses stub when disabled.
+ bf_intern_mikktspace
+ bf_intern_opensubdiv # Uses stub when disabled.
+ bf_modifiers
+ bf_nodes
+ bf_physics
+ bf_python
+ bf_python_bmesh
+ bf_rna
+ bf_shader_fx
)
if(WITH_BINRELOC)
@@ -387,6 +412,10 @@ if(WITH_BULLET)
list(APPEND INC
../../../intern/rigidbody
)
+ list(APPEND LIB
+ bf_intern_rigidbody
+ extern_bullet
+ )
add_definitions(-DWITH_BULLET)
endif()
@@ -481,6 +510,9 @@ if(WITH_MOD_FLUID)
list(APPEND INC
../../../intern/elbeem/extern
)
+ list(APPEND LIB
+ bf_intern_elbeem
+ )
add_definitions(-DWITH_MOD_FLUID)
endif()
@@ -488,6 +520,9 @@ if(WITH_MOD_SMOKE)
list(APPEND INC
../../../intern/smoke/extern
)
+ list(APPEND LIB
+ bf_intern_smoke
+ )
add_definitions(-DWITH_SMOKE)
endif()
@@ -509,6 +544,9 @@ if(WITH_LZO)
list(APPEND INC_SYS
../../../extern/lzo/minilzo
)
+ list(APPEND LIB
+ extern_minilzo
+ )
endif()
add_definitions(-DWITH_LZO)
endif()
@@ -517,6 +555,9 @@ if(WITH_LZMA)
list(APPEND INC_SYS
../../../extern/lzma
)
+ list(APPEND LIB
+ extern_lzma
+ )
add_definitions(-DWITH_LZMA)
endif()
@@ -557,6 +598,9 @@ if(WITH_OPENVDB)
list(APPEND INC
../../../intern/openvdb
)
+ list(APPEND LIB
+ bf_intern_openvdb
+ )
add_definitions(-DWITH_OPENVDB)
if(WITH_OPENVDB_BLOSC)