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:
authorSergey Sharybin <sergey.vfx@gmail.com>2013-02-01 10:24:49 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2013-02-01 10:24:49 +0400
commit7dc33e3ef8429d7d541e8c0291826a2d42c56566 (patch)
treeffce08f4358c95d9b738430244a12a1d34283c55 /intern/rigidbody/CMakeLists.txt
parenta47bef36225b06fb2237bf2cd03332a1ee0337d5 (diff)
Move opencl and reigidbody from source/blender/ to intern/
This modules does not depend on any blender-specific data structures or algorithms and due to our policy better be placed to intern/ Shall be no functional changes, tested CMake and SCons on Linux, hopefully other platforms will work as well. P.S. SVN history shall be preserved for the files.
Diffstat (limited to 'intern/rigidbody/CMakeLists.txt')
-rw-r--r--intern/rigidbody/CMakeLists.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/intern/rigidbody/CMakeLists.txt b/intern/rigidbody/CMakeLists.txt
new file mode 100644
index 00000000000..a323e55e570
--- /dev/null
+++ b/intern/rigidbody/CMakeLists.txt
@@ -0,0 +1,35 @@
+# ***** BEGIN GPL LICENSE BLOCK *****
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software Foundation,
+# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+#
+# The Original Code is Copyright (C) 2006, Blender Foundation
+# All rights reserved.
+#
+# The Original Code is: all of this file.
+#
+# ***** END GPL LICENSE BLOCK *****
+
+SET(INC
+ .
+ ../../extern/bullet2/src
+)
+
+set(SRC
+ rb_bullet_api.cpp
+
+ RBI_api.h
+)
+
+blender_add_lib(bf_intern_rigidbody "${SRC}" "${INC}" "${INC_SYS}")