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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-06-11 21:17:02 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-06-11 21:17:02 +0400
commitdf0b629e246cc7fa091b00b97a2158877bd10ce3 (patch)
tree243613c408318df3964fc5ebcd5a7fc33b4ca56d /source/blender/editors/render/CMakeLists.txt
parentad2f4905301854f07d59bc290488da7ce4e7df57 (diff)
parent66134ea38166742444720a4fe2f8d95effd8866a (diff)
Merged changes in the trunk up to revision 29409.
Diffstat (limited to 'source/blender/editors/render/CMakeLists.txt')
-rw-r--r--source/blender/editors/render/CMakeLists.txt55
1 files changed, 55 insertions, 0 deletions
diff --git a/source/blender/editors/render/CMakeLists.txt b/source/blender/editors/render/CMakeLists.txt
new file mode 100644
index 00000000000..faf110c1eed
--- /dev/null
+++ b/source/blender/editors/render/CMakeLists.txt
@@ -0,0 +1,55 @@
+# $Id: CMakeLists.txt 12931 2007-12-17 18:20:48Z theeth $
+# ***** 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.
+#
+# Contributor(s): Jacques Beaurain.
+#
+# ***** END GPL LICENSE BLOCK *****
+
+FILE(GLOB SRC *.c)
+
+SET(INC
+ ../../blenfont
+ ../../blenkernel
+ ../../blenlib
+ ../../blenloader
+ ../../gpu
+ ../../imbuf
+ ../include
+ ../../../../intern/guardedalloc
+ ../../../../extern/glew/include
+ ../../makesdna
+ ../../makesrna
+ ../../python
+ ../../render/extern/include
+ ../../windowmanager
+ ../../freestyle
+)
+
+IF(WITH_QUICKTIME)
+ SET(INC ${INC} ../../quicktime ${QUICKTIME_INC})
+ ADD_DEFINITIONS(-DWITH_QUICKTIME)
+ENDIF(WITH_QUICKTIME)
+
+IF(WITH_OPENMP)
+ ADD_DEFINITIONS(-DPARALLEL=1)
+ENDIF(WITH_OPENMP)
+
+IF(WIN32)
+ SET(INC ${INC} ${PTHREADS_INC})
+ENDIF(WIN32)
+
+BLENDERLIB(bf_editor_render "${SRC}" "${INC}")