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:
authorJacques Lucke <mail@jlucke.com>2019-04-17 11:25:47 +0300
committerJacques Lucke <mail@jlucke.com>2019-04-17 11:25:47 +0300
commit06a966ebe715923b6a05d8f44fc3efb7cf413ede (patch)
tree130cb3875c14fc8190ca7e5d30acc724b0550c1e /source/blender/modifiers/CMakeLists.txt
parentd348a273803b6a9f299c9183a042f78e60ddca06 (diff)
parentb3dabc200a4b0399ec6b81f2ff2730d07b44fcaa (diff)
Merge 'master' into 'functions'
Diffstat (limited to 'source/blender/modifiers/CMakeLists.txt')
-rw-r--r--source/blender/modifiers/CMakeLists.txt13
1 files changed, 12 insertions, 1 deletions
diff --git a/source/blender/modifiers/CMakeLists.txt b/source/blender/modifiers/CMakeLists.txt
index 8f87388f76a..f04abb1d653 100644
--- a/source/blender/modifiers/CMakeLists.txt
+++ b/source/blender/modifiers/CMakeLists.txt
@@ -112,6 +112,8 @@ set(SRC
)
set(LIB
+ bf_blenkernel
+ bf_blenlib
)
if(WITH_ALEMBIC)
@@ -119,13 +121,19 @@ if(WITH_ALEMBIC)
list(APPEND INC
../alembic
)
+ list(APPEND LIB
+ bf_alembic
+ )
endif()
if(WITH_MOD_REMESH)
- add_definitions(-DWITH_MOD_REMESH)
list(APPEND INC
../../../intern/dualcon
)
+ list(APPEND LIB
+ bf_intern_dualcon
+ )
+ add_definitions(-DWITH_MOD_REMESH)
endif()
if(WITH_MOD_FLUID)
@@ -137,6 +145,9 @@ if(WITH_MOD_OCEANSIM)
endif()
if(WITH_BULLET)
+ list(APPEND LIB
+ extern_bullet
+ )
add_definitions(-DWITH_BULLET)
endif()