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-06-06 11:42:01 +0300
committerJacques Lucke <mail@jlucke.com>2019-06-06 11:42:01 +0300
commit56a0a7164926522cfd363b25ad4883ed24107d2e (patch)
treed5ba5ca641292e5e3955b709e932ef43e94c9a46 /source/blender/simulations/CMakeLists.txt
parent6f728beec96f7ebbb9ebe276c076f24f7bec90d6 (diff)
new simulations folder with some test code
Diffstat (limited to 'source/blender/simulations/CMakeLists.txt')
-rw-r--r--source/blender/simulations/CMakeLists.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/source/blender/simulations/CMakeLists.txt b/source/blender/simulations/CMakeLists.txt
new file mode 100644
index 00000000000..78fbfcf9cd3
--- /dev/null
+++ b/source/blender/simulations/CMakeLists.txt
@@ -0,0 +1,23 @@
+set(INC
+ .
+ ../blenlib
+ ../makesdna
+ ../makesrna
+ ../blenkernel
+ ../depsgraph
+ ../../../intern/guardedalloc
+)
+
+set(INC_SYS
+)
+
+
+set(SRC
+ playground.cpp
+)
+
+set(LIB
+ bf_blenlib
+)
+
+blender_add_lib(bf_simulations "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")