2010-12-22 22:15:20 +00:00
|
|
|
# -*- mode: cmake; indent-tabs-mode: t; -*-
|
2006-11-17 02:27:12 +00:00
|
|
|
# $Id$
|
2008-01-07 19:13:47 +00:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
2006-11-17 02:27:12 +00:00
|
|
|
#
|
|
|
|
# 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
|
2008-01-07 19:13:47 +00:00
|
|
|
# of the License, or (at your option) any later version.
|
2006-11-17 02:27:12 +00:00
|
|
|
#
|
|
|
|
# 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,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-11-17 02:27:12 +00:00
|
|
|
#
|
|
|
|
# The Original Code is Copyright (C) 2006, Blender Foundation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# The Original Code is: all of this file.
|
|
|
|
#
|
|
|
|
# Contributor(s): Jacques Beaurain.
|
|
|
|
#
|
2008-01-07 19:13:47 +00:00
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2009-09-25 13:09:18 +00:00
|
|
|
# So BUILDINFO and BLENDERPATH strings are automatically quoted
|
2010-12-08 08:43:06 +00:00
|
|
|
cmake_policy(SET CMP0005 NEW)
|
2009-09-25 13:09:18 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
setup_libdirs()
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-22 22:15:20 +00:00
|
|
|
blender_include_dirs(
|
2010-06-06 13:32:58 +00:00
|
|
|
../../intern/guardedalloc
|
2009-09-06 01:51:23 +00:00
|
|
|
../blender/blenlib
|
|
|
|
../blender/blenkernel
|
2011-02-21 13:00:38 +00:00
|
|
|
../blender/blenloader
|
2009-09-06 01:51:23 +00:00
|
|
|
../blender/editors/include
|
|
|
|
../blender/makesrna
|
|
|
|
../blender/imbuf
|
|
|
|
../blender/render/extern/include
|
|
|
|
../blender/makesdna
|
|
|
|
../blender/gpu
|
|
|
|
../blender/windowmanager
|
2006-11-17 02:27:12 +00:00
|
|
|
)
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_CODEC_QUICKTIME)
|
|
|
|
add_definitions(-DWITH_QUICKTIME)
|
|
|
|
endif()
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_IMAGE_OPENEXR)
|
|
|
|
add_definitions(-DWITH_OPENEXR)
|
|
|
|
endif()
|
2008-10-08 19:56:41 +00:00
|
|
|
|
2011-02-20 15:48:01 +00:00
|
|
|
if(WITH_IMAGE_OPENJPEG)
|
|
|
|
add_definitions(-DWITH_OPENJPEG)
|
|
|
|
endif()
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_IMAGE_TIFF)
|
|
|
|
add_definitions(-DWITH_TIFF)
|
|
|
|
endif()
|
2010-08-03 11:25:34 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_IMAGE_DDS)
|
|
|
|
add_definitions(-DWITH_DDS)
|
|
|
|
endif()
|
2010-08-03 11:25:34 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_IMAGE_CINEON)
|
|
|
|
add_definitions(-DWITH_CINEON)
|
|
|
|
endif()
|
2010-08-03 11:25:34 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_IMAGE_HDR)
|
|
|
|
add_definitions(-DWITH_HDR)
|
|
|
|
endif()
|
2010-05-21 03:25:38 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_PYTHON)
|
2010-12-22 22:15:20 +00:00
|
|
|
blender_include_dirs(../blender/python)
|
2010-12-08 08:43:06 +00:00
|
|
|
add_definitions(-DWITH_PYTHON)
|
|
|
|
endif()
|
2008-12-31 05:20:35 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_GAMEENGINE)
|
2010-12-22 22:15:20 +00:00
|
|
|
blender_include_dirs(
|
2010-11-03 01:56:02 +00:00
|
|
|
../kernel/gen_messaging
|
|
|
|
../kernel/gen_system
|
|
|
|
)
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
add_definitions(-DWITH_GAMEENGINE)
|
|
|
|
endif()
|
2010-10-31 00:56:46 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(NOT WITH_SDL)
|
|
|
|
add_definitions(-DDISABLE_SDL)
|
|
|
|
endif()
|
2009-07-20 10:24:53 +00:00
|
|
|
|
2011-02-21 13:13:08 +00:00
|
|
|
if(WITH_BINRELOC)
|
2010-12-08 08:43:06 +00:00
|
|
|
add_definitions(-DWITH_BINRELOC)
|
2010-12-22 22:15:20 +00:00
|
|
|
blender_include_dirs(${BINRELOC_INC})
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2007-01-23 20:08:23 +00:00
|
|
|
|
2009-09-24 15:36:00 +00:00
|
|
|
# Setup the exe sources and buildinfo
|
2010-12-08 08:43:06 +00:00
|
|
|
set(SRC
|
2010-11-29 04:35:56 +00:00
|
|
|
creator.c
|
|
|
|
)
|
2006-12-06 00:28:13 +00:00
|
|
|
|
2011-04-09 00:10:29 +00:00
|
|
|
# MSVC 2010 gives linking errors with the manifest
|
2011-04-10 09:37:04 +00:00
|
|
|
if(WIN32 AND NOT UNIX)
|
2011-03-29 13:00:03 +00:00
|
|
|
string(SUBSTRING ${BLENDER_VERSION} 0 1 bver1)
|
|
|
|
string(SUBSTRING ${BLENDER_VERSION} 2 1 bver2)
|
|
|
|
string(SUBSTRING ${BLENDER_VERSION} 3 1 bver3)
|
2011-04-09 23:25:52 +00:00
|
|
|
if(MINGW)
|
|
|
|
add_definitions(
|
|
|
|
-DWINDRES
|
|
|
|
-DBLEN_VER_RC_STR_M=${BLENDER_VERSION}
|
|
|
|
-DBLEN_VER_RC_1=${bver1}
|
|
|
|
-DBLEN_VER_RC_2=${bver2}
|
|
|
|
-DBLEN_VER_RC_3=${bver3}
|
|
|
|
-DBLEN_VER_RC_4=0
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
add_definitions(
|
|
|
|
-DBLEN_VER_RC_STR=${BLENDER_VERSION}
|
|
|
|
-DBLEN_VER_RC_1=${bver1}
|
|
|
|
-DBLEN_VER_RC_2=${bver2}
|
|
|
|
-DBLEN_VER_RC_3=${bver3}
|
|
|
|
-DBLEN_VER_RC_4=0
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2011-03-29 13:00:03 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
list(APPEND SRC
|
2010-11-29 04:35:56 +00:00
|
|
|
../icons/winblender.rc
|
|
|
|
)
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_BUILDINFO)
|
2011-02-24 17:57:35 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# These defines could all be moved into the header below
|
2010-12-08 08:43:06 +00:00
|
|
|
string(REPLACE " " "\ " BUILDINFO_CFLAGS "${CMAKE_C_FLAGS}")
|
|
|
|
string(REPLACE " " "\ " BUILDINFO_CXXFLAGS "${CMAKE_CXX_FLAGS}")
|
|
|
|
string(REPLACE " " "\ " BUILDINFO_LINKFLAGS "${PLATFORM_LINKFLAGS}")
|
|
|
|
add_definitions(
|
2011-02-24 17:57:35 +00:00
|
|
|
# # define in header now, else these get out of date on rebuilds.
|
|
|
|
# -DBUILD_DATE="${BUILD_DATE}"
|
|
|
|
# -DBUILD_TIME="${BUILD_TIME}"
|
|
|
|
# -DBUILD_REV="${BUILD_REV}"
|
|
|
|
-DWITH_BUILDINFO_HEADER # alternative to lines above
|
2010-09-07 01:13:10 +00:00
|
|
|
-DBUILD_PLATFORM="${CMAKE_SYSTEM_NAME}"
|
|
|
|
-DBUILD_TYPE="${CMAKE_BUILD_TYPE}"
|
2010-10-19 05:00:36 +00:00
|
|
|
-DBUILD_CFLAGS="${BUILDINFO_CFLAGS}"
|
|
|
|
-DBUILD_CXXFLAGS="${BUILDINFO_CXXFLAGS}"
|
|
|
|
-DBUILD_LINKFLAGS="${BUILDINFO_LINKFLAGS}"
|
|
|
|
-DBUILD_SYSTEM="CMake"
|
2010-09-07 01:13:10 +00:00
|
|
|
)
|
|
|
|
|
2011-02-24 17:57:35 +00:00
|
|
|
# --------------------------------------------------------------------------
|
|
|
|
# write header for values that change each build
|
|
|
|
# note, generaed file is in build dir's source/creator
|
|
|
|
# except when used as an include path.
|
|
|
|
|
|
|
|
# include the output directory, where the buildinfo.h file is generated
|
|
|
|
include_directories(${CMAKE_BINARY_DIR}/source/creator)
|
2011-02-25 02:27:54 +00:00
|
|
|
|
2011-02-24 17:57:35 +00:00
|
|
|
# a custom target that is always built
|
|
|
|
add_custom_target(buildinfo ALL
|
|
|
|
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/buildinfo.h)
|
|
|
|
|
|
|
|
# creates svnheader.h using cmake script
|
|
|
|
add_custom_command(OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/buildinfo.h
|
|
|
|
COMMAND ${CMAKE_COMMAND}
|
|
|
|
-DSOURCE_DIR=${CMAKE_SOURCE_DIR}
|
|
|
|
-P ${CMAKE_SOURCE_DIR}/build_files/cmake/buildinfo.cmake)
|
|
|
|
|
|
|
|
# buildinfo.h is a generated file
|
|
|
|
set_source_files_properties(${CMAKE_CURRENT_SOURCE_DIR}/buildinfo.h
|
|
|
|
PROPERTIES GENERATED TRUE
|
|
|
|
HEADER_FILE_ONLY TRUE)
|
2011-03-07 03:57:04 +00:00
|
|
|
|
2011-02-25 02:27:54 +00:00
|
|
|
# add deps below, after adding blender
|
2011-02-24 17:57:35 +00:00
|
|
|
# -------------- done with header values.
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
list(APPEND SRC
|
2010-11-29 04:35:56 +00:00
|
|
|
buildinfo.c
|
|
|
|
)
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2009-09-24 15:36:00 +00:00
|
|
|
|
2010-12-16 12:48:30 +00:00
|
|
|
# message(STATUS "Configuring blender")
|
2011-02-20 23:39:29 +00:00
|
|
|
if(WITH_PYTHON_MODULE)
|
|
|
|
add_definitions(-DWITH_PYTHON_MODULE)
|
|
|
|
|
|
|
|
# creates ./bin/bpy.so which can be imported as a python module.
|
|
|
|
add_library(blender SHARED ${SRC})
|
|
|
|
set_target_properties(
|
|
|
|
blender
|
|
|
|
PROPERTIES
|
|
|
|
PREFIX ""
|
|
|
|
OUTPUT_NAME bpy
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/
|
2011-03-24 00:14:49 +00:00
|
|
|
RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin/ # only needed on windows
|
2011-02-20 23:39:29 +00:00
|
|
|
)
|
2011-03-24 00:14:49 +00:00
|
|
|
|
|
|
|
if(WIN32)
|
|
|
|
# python modules use this
|
|
|
|
set_target_properties(
|
|
|
|
blender
|
|
|
|
PROPERTIES
|
|
|
|
SUFFIX ".pyd"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2011-02-20 23:39:29 +00:00
|
|
|
else()
|
|
|
|
add_executable(blender ${EXETYPE} ${SRC})
|
|
|
|
endif()
|
2006-12-10 14:49:28 +00:00
|
|
|
|
2011-02-24 17:57:35 +00:00
|
|
|
if(WITH_BUILDINFO)
|
|
|
|
# explicitly say that the executable depends on the buildinfo
|
|
|
|
add_dependencies(blender buildinfo)
|
|
|
|
endif()
|
|
|
|
|
2006-12-10 14:49:28 +00:00
|
|
|
# Post build steps for bundling/packaging.
|
|
|
|
|
2011-03-07 03:33:33 +00:00
|
|
|
|
2011-04-21 12:07:40 +00:00
|
|
|
if(MSVC_IDE)
|
2011-03-07 03:33:33 +00:00
|
|
|
# ${CMAKE_CFG_INTDIR} should replace \${BUILD_TYPE} when using add_command
|
|
|
|
set(TARGETDIR ${EXECUTABLE_OUTPUT_PATH}/\${BUILD_TYPE})
|
2011-03-07 21:28:36 +00:00
|
|
|
elseif(APPLE)
|
2011-03-16 15:44:17 +00:00
|
|
|
set(TARGETDIR ${EXECUTABLE_OUTPUT_PATH}/\${BUILD_TYPE})
|
2011-03-07 03:33:33 +00:00
|
|
|
else()
|
|
|
|
set(TARGETDIR ${EXECUTABLE_OUTPUT_PATH})
|
|
|
|
endif()
|
2006-12-10 17:09:48 +00:00
|
|
|
|
Blender modifications for Cycles integration.
Some notes about code status:
* The Blender modifications were fairly quickly put together, much more code
polish and work is needed to get this to a state where it can be committed
to trunk. Files created with this version may not work in future versions.
* Only simple path tracing is supported currently, but we intend to provide
finer control, and more options where it makes sense.
* For GPU rendering, only CUDA works currently. The intention is to have the
same kernel code compile for C++/OpenCL/CUDA, some more work is needed to
get OpenCL functional.
* There are two shading backends: GPU compatible and Open Shading Language.
Unfortunately, OSL only runs on the CPU currently, getting this to run on
the GPU would be a major undertaking, and is unlikely to be supported soon.
Additionally, it's not possible yet to write custom OSL shaders.
* There is some code for adaptive subdivision and displacement, but it's far
from finished. The intention is to eventually have a nice unified bump and
displacement system.
* The code currently has a number of fairly heavy dependencies: Boost,
OpenImageIO, GLEW, GLUT, and optionally OSL, Partio. This makes it difficult
to compile, we'll try to eliminate some, it may take a while before it
becomes easy to compile this.
2011-04-27 14:36:02 +00:00
|
|
|
# headers
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${CMAKE_SOURCE_DIR}/source/blender/makesrna/RNA_access.h
|
|
|
|
${CMAKE_SOURCE_DIR}/source/blender/makesrna/RNA_types.h
|
|
|
|
${CMAKE_BINARY_DIR}/source/blender/makesrna/intern/RNA_blender.h
|
|
|
|
${CMAKE_BINARY_DIR}/source/blender/makesrna/intern/RNA_blender_cpp.h
|
|
|
|
${CMAKE_SOURCE_DIR}/intern/guardedalloc/MEM_sys_types.h
|
|
|
|
${CMAKE_SOURCE_DIR}/intern/guardedalloc/MEM_guardedalloc.h
|
|
|
|
${CMAKE_SOURCE_DIR}/source/blender/blenloader/BLO_sys_types.h
|
|
|
|
${CMAKE_SOURCE_DIR}/source/blender/makesdna/DNA_listBase.h
|
|
|
|
DESTINATION ${INCLUDE_OUTPUT_PATH})
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# install target
|
|
|
|
if(UNIX AND NOT APPLE)
|
2006-12-10 17:09:48 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_INSTALL_PORTABLE)
|
|
|
|
set(TARGETDIR_VER ${TARGETDIR}/${BLENDER_VERSION})
|
|
|
|
else()
|
|
|
|
set(TARGETDIR_VER ${CMAKE_INSTALL_PREFIX}/share/blender/${BLENDER_VERSION})
|
|
|
|
endif()
|
2011-03-06 11:41:30 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# important to make a clean install each time
|
|
|
|
# else old scripts get loaded.
|
|
|
|
install(
|
|
|
|
CODE
|
|
|
|
"file(REMOVE_RECURSE ${TARGETDIR_VER})"
|
|
|
|
)
|
2011-03-06 11:41:30 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# message after building.
|
|
|
|
add_custom_command(
|
|
|
|
TARGET blender POST_BUILD MAIN_DEPENDENCY blender
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo 'now run: \"make install\" to copy runtime files & scripts to ${TARGETDIR_VER}'
|
|
|
|
)
|
|
|
|
|
|
|
|
# there are a few differences between portable and system install
|
|
|
|
if(WITH_INSTALL_PORTABLE)
|
2010-12-08 08:43:06 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/blender.desktop
|
2011-04-21 06:37:54 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/scalable/apps/blender.svg
|
2011-03-17 09:09:48 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/doc/manpage/blender.1
|
|
|
|
DESTINATION ${TARGETDIR}
|
2009-09-21 03:16:26 +00:00
|
|
|
)
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install(
|
|
|
|
PROGRAMS
|
|
|
|
${CMAKE_SOURCE_DIR}/release/bin/blender-thumbnailer.py
|
|
|
|
DESTINATION ${TARGETDIR}
|
2011-03-09 21:19:15 +00:00
|
|
|
)
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install(
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/text/
|
|
|
|
DESTINATION ${TARGETDIR}
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2011-03-06 11:41:30 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
else()
|
|
|
|
# main blender binary
|
|
|
|
install(
|
|
|
|
PROGRAMS ${TARGETDIR}/blender
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
|
|
|
|
)
|
2011-03-08 09:01:22 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_GAMEENGINE AND WITH_PLAYER)
|
2011-03-06 11:41:30 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
PROGRAMS ${TARGETDIR}/blenderplayer
|
2009-09-21 03:16:26 +00:00
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
|
|
|
|
)
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2009-09-21 03:16:26 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# misc files
|
2010-12-08 08:43:06 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/freedesktop/blender.desktop
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/applications
|
2010-07-26 19:59:33 +00:00
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
install(
|
2011-04-21 06:37:54 +00:00
|
|
|
DIRECTORY
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/16x16
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/22x22
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/24x24
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/32x32
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/48x48
|
|
|
|
${CMAKE_SOURCE_DIR}/release/freedesktop/icons/256x256
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
PATTERN "*.svg" EXCLUDE
|
|
|
|
)
|
|
|
|
install(
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/freedesktop/icons/scalable/apps/blender.svg
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/icons/hicolor/scalable/apps
|
2009-09-06 01:51:23 +00:00
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
install(
|
|
|
|
PROGRAMS ${CMAKE_SOURCE_DIR}/release/bin/blender-thumbnailer.py
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
|
|
|
|
)
|
|
|
|
install(
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/doc/manpage/blender.1
|
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1
|
|
|
|
)
|
|
|
|
install(
|
2011-03-07 03:33:33 +00:00
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/text/
|
2011-03-17 09:09:48 +00:00
|
|
|
DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/blender
|
2011-03-07 03:33:33 +00:00
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
2011-03-07 03:33:33 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install(
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.bfont.ttf
|
|
|
|
DESTINATION ${TARGETDIR_VER}/config
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WITH_INTERNATIONAL)
|
|
|
|
install(
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.Blanguages
|
2011-03-07 03:33:33 +00:00
|
|
|
DESTINATION ${TARGETDIR_VER}/config
|
|
|
|
)
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install(
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/bin/.blender/locale
|
|
|
|
DESTINATION ${TARGETDIR_VER}/datafiles/
|
2011-03-07 03:33:33 +00:00
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
2011-03-07 03:33:33 +00:00
|
|
|
|
2011-03-09 00:23:26 +00:00
|
|
|
# plugins in blender 2.5 don't work at the moment.
|
|
|
|
#
|
|
|
|
# install(
|
|
|
|
# DIRECTORY ${CMAKE_SOURCE_DIR}/release/plugins
|
|
|
|
# DESTINATION ${TARGETDIR_VER}/
|
|
|
|
# PATTERN ".svn" EXCLUDE
|
|
|
|
# )
|
2011-03-07 03:33:33 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_PYTHON)
|
|
|
|
# install(CODE "message(\"copying blender scripts...\")")
|
|
|
|
install(
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/scripts
|
|
|
|
DESTINATION ${TARGETDIR_VER}/
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
PATTERN "__pycache__" EXCLUDE
|
|
|
|
)
|
2011-03-07 03:33:33 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_PYTHON_INSTALL)
|
|
|
|
# Copy the systems python into the install directory
|
|
|
|
# Scons copy in tools/Blender.py
|
|
|
|
# install(CODE "message(\"copying a subset of the systems python...\")")
|
2011-03-07 03:33:33 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
DIRECTORY ${PYTHON_LIBPATH}/python${PYTHON_VERSION}
|
|
|
|
DESTINATION ${TARGETDIR_VER}/python/lib/
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
PATTERN "__pycache__" EXCLUDE # ./distutils
|
|
|
|
PATTERN "distutils" EXCLUDE # ./distutils
|
|
|
|
PATTERN "lib2to3" EXCLUDE # ./lib2to3
|
|
|
|
PATTERN "config" EXCLUDE # ./config
|
|
|
|
PATTERN "config-*" EXCLUDE # ./config-*
|
|
|
|
PATTERN "site-packages/*" EXCLUDE # ./site-packages/*
|
|
|
|
PATTERN "tkinter" EXCLUDE # ./tkinter
|
|
|
|
PATTERN "lib-dynload/_tkinter.*" EXCLUDE # ./lib-dynload/_tkinter.co
|
|
|
|
PATTERN "test" EXCLUDE # ./test
|
|
|
|
PATTERN "turtledemo" EXCLUDE # ./turtledemo
|
2011-03-07 03:33:33 +00:00
|
|
|
)
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# # doesnt work, todo
|
|
|
|
# install(CODE "execute_process(COMMAND find ${TARGETDIR}/${BLENDER_VERSION}/python/lib/ -name '*.so' -exec strip -s {} '\;')")
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
|
|
|
elseif(WIN32)
|
|
|
|
|
|
|
|
set(TARGETDIR_VER ${TARGETDIR}/${BLENDER_VERSION})
|
|
|
|
|
|
|
|
install( # same as linux!, deduplicate
|
|
|
|
CODE
|
|
|
|
"file(REMOVE_RECURSE ${TARGETDIR_VER})"
|
|
|
|
)
|
|
|
|
|
|
|
|
install( # same as linux!, deduplicate
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/text/
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
2009-09-06 01:51:23 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install( # same as linux!, deduplicate
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.bfont.ttf
|
|
|
|
DESTINATION ${TARGETDIR_VER}/config
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WITH_INTERNATIONAL) # same as linux!, deduplicate
|
|
|
|
install(
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.Blanguages
|
|
|
|
DESTINATION ${TARGETDIR_VER}/config
|
|
|
|
)
|
|
|
|
install(
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/bin/.blender/locale
|
|
|
|
DESTINATION ${TARGETDIR_VER}/datafiles/
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
|
|
|
|
|
|
|
if(NOT CMAKE_CL_64)
|
2011-03-07 03:33:33 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES ${LIBDIR}/gettext/lib/gnu_gettext.dll
|
2011-03-07 03:33:33 +00:00
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
|
2011-03-07 03:33:33 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES ${LIBDIR}/iconv/lib/iconv.dll
|
2011-03-07 03:33:33 +00:00
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
endif()
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
install( # same as linux!, deduplicate
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/bin/.blender/locale/
|
|
|
|
DESTINATION ${TARGETDIR_VER}/datafiles/locale
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
)
|
|
|
|
|
|
|
|
# plugins in blender 2.5 don't work at the moment.
|
|
|
|
#
|
|
|
|
# install(
|
|
|
|
# DIRECTORY ${CMAKE_SOURCE_DIR}/release/plugins
|
|
|
|
# DESTINATION ${TARGETDIR_VER}/
|
|
|
|
# PATTERN ".svn" EXCLUDE
|
|
|
|
# )
|
|
|
|
|
|
|
|
if(WITH_PYTHON)
|
|
|
|
# install(CODE "message(\"copying blender scripts...\")")
|
|
|
|
install( # same as linux!, deduplicate
|
|
|
|
DIRECTORY ${CMAKE_SOURCE_DIR}/release/scripts
|
|
|
|
DESTINATION ${TARGETDIR_VER}/
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
PATTERN "__pycache__" EXCLUDE
|
|
|
|
)
|
|
|
|
|
|
|
|
# TODO, multiple targets?
|
|
|
|
install(FILES ${LIBDIR}/python/lib/python32.dll DESTINATION ${TARGETDIR}/ CONFIGURATIONS Release)
|
|
|
|
install(FILES ${LIBDIR}/python/lib/python32.dll DESTINATION ${TARGETDIR}/ CONFIGURATIONS RelWithDebInfo)
|
|
|
|
install(FILES ${LIBDIR}/python/lib/python32.dll DESTINATION ${TARGETDIR}/ CONFIGURATIONS MinSizeRel)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES ${LIBDIR}/python/lib/python32_d.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
CONFIGURATIONS Debug
|
|
|
|
)
|
|
|
|
|
|
|
|
if(WITH_PYTHON_INSTALL)
|
|
|
|
#~ # note, as far as python is concerned 'RelWithDebInfo' is not debug since its without debug flags.
|
|
|
|
|
|
|
|
# create the directory in multiple steps, so it actually gets created when it doesn't exist yet
|
|
|
|
install(CODE "
|
|
|
|
message(\"creating ${TARGETDIR_VER}/python/lib\")
|
|
|
|
file(MAKE_DIRECTORY ${TARGETDIR_VER}/python/)
|
|
|
|
file(MAKE_DIRECTORY ${TARGETDIR_VER}/python/lib/)
|
|
|
|
message(\"done creating dir\")
|
|
|
|
")
|
2011-03-07 03:33:33 +00:00
|
|
|
|
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
CODE
|
|
|
|
"
|
|
|
|
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E chdir \"${TARGETDIR_VER}/python/lib/\"
|
|
|
|
\"${CMAKE_COMMAND}\" -E tar xzfv \"${LIBDIR}/release/python32.tar.gz\")
|
|
|
|
"
|
|
|
|
CONFIGURATIONS Release
|
2011-03-07 03:33:33 +00:00
|
|
|
)
|
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
CODE
|
|
|
|
"
|
|
|
|
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E chdir \"${TARGETDIR_VER}/python/lib/\"
|
|
|
|
\"${CMAKE_COMMAND}\" -E tar xzfv \"${LIBDIR}/release/python32.tar.gz\")
|
|
|
|
"
|
|
|
|
CONFIGURATIONS RelWithDebInfo
|
2011-03-07 03:33:33 +00:00
|
|
|
)
|
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
CODE
|
|
|
|
"
|
|
|
|
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E chdir \"${TARGETDIR_VER}/python/lib/\"
|
|
|
|
\"${CMAKE_COMMAND}\" -E tar xzfv \"${LIBDIR}/release/python32.tar.gz\")
|
|
|
|
"
|
|
|
|
CONFIGURATIONS MinSizeRel
|
2009-09-06 01:51:23 +00:00
|
|
|
)
|
2011-03-07 03:33:33 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
CODE
|
|
|
|
"
|
|
|
|
execute_process(COMMAND \"${CMAKE_COMMAND}\" -E chdir \"${TARGETDIR_VER}/python/lib/\"
|
|
|
|
\"${CMAKE_COMMAND}\" -E tar xzfv \"${LIBDIR}/release/python32_d.tar.gz\")
|
|
|
|
"
|
|
|
|
CONFIGURATIONS Debug
|
2009-09-06 01:51:23 +00:00
|
|
|
)
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# doesnt work, todo
|
|
|
|
# install(CODE "execute_process(COMMAND find ${TARGETDIR}/${BLENDER_VERSION}/python/lib/ -name '*.so' -exec strip -s {} '\;')")
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
2009-09-06 01:51:23 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(CMAKE_CL_64)
|
|
|
|
# gettext and png are statically linked on win64
|
|
|
|
install(
|
|
|
|
FILES ${LIBDIR}/zlib/lib/zlib.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${LIBDIR}/png/lib/libpng.dll
|
|
|
|
${LIBDIR}/zlib/lib/zlib.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
endif()
|
2009-09-06 01:51:23 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(MSVC)
|
|
|
|
install(
|
|
|
|
FILES ${LIBDIR}/pthreads/lib/pthreadVC2.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
install(
|
|
|
|
FILES ${LIBDIR}/pthreads/lib/pthreadGC2.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
endif()
|
2010-11-21 13:41:43 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_CODEC_FFMPEG)
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${LIBDIR}/ffmpeg/lib/avcodec-52.dll
|
|
|
|
${LIBDIR}/ffmpeg/lib/avformat-52.dll
|
|
|
|
${LIBDIR}/ffmpeg/lib/avdevice-52.dll
|
|
|
|
${LIBDIR}/ffmpeg/lib/avutil-50.dll
|
|
|
|
${LIBDIR}/ffmpeg/lib/swscale-0.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_CODEC_SNDFILE)
|
2011-03-16 15:44:17 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES
|
|
|
|
${LIBDIR}/sndfile/lib/libsndfile-1.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
2011-03-09 00:23:26 +00:00
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
2011-03-09 00:23:26 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_OPENAL)
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${LIBDIR}/openal/lib/OpenAL32.dll
|
|
|
|
${LIBDIR}/openal/lib/wrap_oal.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
2011-03-16 15:44:17 +00:00
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
if(WITH_SDL)
|
|
|
|
if(NOT CMAKE_CL_64)
|
2011-03-16 15:44:17 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES
|
|
|
|
${LIBDIR}/sdl/lib/SDL.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
2011-03-16 15:44:17 +00:00
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2011-04-01 06:39:19 +00:00
|
|
|
|
|
|
|
if(NOT CMAKE_CL_64)
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${LIBDIR}/thumbhandler/lib/BlendThumb.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
install(
|
|
|
|
FILES
|
|
|
|
${LIBDIR}/thumbhandler/lib/BlendThumb64.dll
|
|
|
|
DESTINATION ${TARGETDIR}/
|
|
|
|
)
|
|
|
|
endif()
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
elseif(APPLE)
|
|
|
|
set(SOURCEDIR ${CMAKE_SOURCE_DIR}/source/darwin/blender.app)
|
|
|
|
set(SOURCEINFO ${SOURCEDIR}/Contents/Info.plist)
|
|
|
|
set(TARGETDIR_VER ${TARGETDIR}/blender.app/Contents/MacOS/${BLENDER_VERSION})
|
|
|
|
|
|
|
|
# setup Info.plist
|
|
|
|
execute_process(COMMAND date "+%Y-%m-%d" OUTPUT_VARIABLE BLENDER_DATE OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
|
|
|
|
set_target_properties(blender PROPERTIES
|
|
|
|
MACOSX_BUNDLE_INFO_PLIST ${SOURCEINFO}
|
|
|
|
MACOSX_BUNDLE_SHORT_VERSION_STRING ${BLENDER_VERSION}
|
|
|
|
MACOSX_BUNDLE_LONG_VERSION_STRING "${BLENDER_VERSION} ${BLENDER_DATE}")
|
|
|
|
|
|
|
|
# important to make a clean install each time else old scripts get loaded.
|
|
|
|
install(
|
|
|
|
CODE
|
|
|
|
"file(REMOVE_RECURSE ${TARGETDIR_VER})"
|
|
|
|
)
|
|
|
|
|
|
|
|
# message after building.
|
|
|
|
add_custom_command(
|
|
|
|
TARGET blender POST_BUILD MAIN_DEPENDENCY blender
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E echo 'now run: \"make install\" to copy runtime files & scripts to ${TARGETDIR_VER}'
|
|
|
|
)
|
2011-03-07 03:57:04 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# handy install macro to exclude files, we use \$ escape for the "to"
|
|
|
|
# argument when calling so ${BUILD_TYPE} does not get expanded
|
|
|
|
macro(install_dir from to)
|
2011-03-16 15:44:17 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
DIRECTORY ${from}
|
|
|
|
DESTINATION ${to}
|
|
|
|
PATTERN ".svn" EXCLUDE
|
|
|
|
PATTERN "*.pyc" EXCLUDE
|
|
|
|
PATTERN "*.pyo" EXCLUDE
|
|
|
|
PATTERN "*.orig" EXCLUDE
|
|
|
|
PATTERN "*.rej" EXCLUDE
|
|
|
|
PATTERN "__pycache__" EXCLUDE
|
|
|
|
PATTERN "__MACOSX" EXCLUDE
|
|
|
|
PATTERN ".DS_Store" EXCLUDE
|
2011-03-16 15:44:17 +00:00
|
|
|
)
|
2011-03-17 09:09:48 +00:00
|
|
|
endmacro()
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# install release and app files
|
|
|
|
install_dir(
|
|
|
|
${CMAKE_SOURCE_DIR}/release/text/
|
|
|
|
\${TARGETDIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES ${SOURCEDIR}/Contents/PkgInfo
|
|
|
|
DESTINATION ${TARGETDIR}/blender.app/Contents/
|
|
|
|
)
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install_dir(
|
|
|
|
${SOURCEDIR}/Contents/Resources
|
|
|
|
\${TARGETDIR}/blender.app/Contents/
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.bfont.ttf
|
|
|
|
DESTINATION ${TARGETDIR_VER}/datafiles
|
|
|
|
)
|
|
|
|
|
|
|
|
# localization
|
|
|
|
if(WITH_INTERNATIONAL)
|
2011-03-16 15:44:17 +00:00
|
|
|
install(
|
2011-03-17 09:09:48 +00:00
|
|
|
FILES ${CMAKE_SOURCE_DIR}/release/bin/.blender/.Blanguages
|
2011-03-16 15:44:17 +00:00
|
|
|
DESTINATION ${TARGETDIR_VER}/datafiles
|
|
|
|
)
|
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
install_dir(
|
|
|
|
${CMAKE_SOURCE_DIR}/release/bin/.blender/locale/
|
|
|
|
\${TARGETDIR_VER}/datafiles/locale
|
|
|
|
)
|
|
|
|
endif()
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# python
|
|
|
|
if(WITH_PYTHON)
|
|
|
|
# the python zip is first extract as part of the build process,
|
|
|
|
# and then later installed as part of make install. this is much
|
|
|
|
# quicker, and means we can easily exclude files on copy
|
|
|
|
add_custom_target(
|
|
|
|
extractpyzip
|
|
|
|
DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/python)
|
2011-03-07 03:57:04 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
set(PYTHON_ZIP "python_${CMAKE_OSX_ARCHITECTURES}.zip")
|
2011-03-16 15:44:17 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
add_custom_command(
|
|
|
|
OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/python
|
|
|
|
COMMAND rm -rf ${CMAKE_CURRENT_BINARY_DIR}/python/
|
|
|
|
COMMAND mkdir ${CMAKE_CURRENT_BINARY_DIR}/python/
|
|
|
|
COMMAND unzip -q ${LIBDIR}/release/${PYTHON_ZIP} -d ${CMAKE_CURRENT_BINARY_DIR}/python/
|
|
|
|
DEPENDS ${LIBDIR}/release/${PYTHON_ZIP})
|
|
|
|
|
|
|
|
add_dependencies(blender extractpyzip)
|
|
|
|
|
|
|
|
# copy extracted python files
|
|
|
|
install_dir(
|
|
|
|
${CMAKE_CURRENT_BINARY_DIR}/python
|
|
|
|
\${TARGETDIR_VER}
|
|
|
|
)
|
2011-03-07 03:57:04 +00:00
|
|
|
|
2011-03-17 09:09:48 +00:00
|
|
|
# copy scripts
|
|
|
|
install_dir(
|
|
|
|
${CMAKE_SOURCE_DIR}/release/scripts
|
|
|
|
\${TARGETDIR_VER}
|
|
|
|
)
|
2010-12-08 08:43:06 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2006-12-10 14:49:28 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
add_dependencies(blender makesdna)
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
get_property(BLENDER_LINK_LIBS GLOBAL PROPERTY BLENDER_LINK_LIBS)
|
2006-11-17 02:27:12 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
set(BLENDER_LINK_LIBS bf_nodes ${BLENDER_LINK_LIBS} bf_windowmanager bf_render)
|
2008-09-30 05:05:50 +00:00
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
if(WITH_MOD_FLUID)
|
|
|
|
list(APPEND BLENDER_LINK_LIBS bf_intern_elbeem)
|
|
|
|
endif()
|
2006-11-17 02:27:12 +00:00
|
|
|
|
|
|
|
|
2010-12-08 08:43:06 +00:00
|
|
|
#if(UNIX)
|
2009-09-06 01:51:23 +00:00
|
|
|
# Sort libraries
|
2010-12-08 08:43:06 +00:00
|
|
|
set(BLENDER_SORTED_LIBS
|
2009-09-06 01:51:23 +00:00
|
|
|
bf_windowmanager
|
2010-06-04 11:34:57 +00:00
|
|
|
|
2010-09-01 05:39:26 +00:00
|
|
|
bf_editor_space_api
|
|
|
|
bf_editor_space_action
|
|
|
|
bf_editor_space_buttons
|
|
|
|
bf_editor_space_console
|
|
|
|
bf_editor_space_file
|
|
|
|
bf_editor_space_graph
|
|
|
|
bf_editor_space_image
|
|
|
|
bf_editor_space_info
|
|
|
|
bf_editor_space_logic
|
|
|
|
bf_editor_space_nla
|
|
|
|
bf_editor_space_node
|
|
|
|
bf_editor_space_outliner
|
|
|
|
bf_editor_space_script
|
|
|
|
bf_editor_space_sequencer
|
|
|
|
bf_editor_space_sound
|
|
|
|
bf_editor_space_time
|
|
|
|
bf_editor_space_userpref
|
|
|
|
bf_editor_space_view3d
|
|
|
|
|
|
|
|
bf_editor_text
|
|
|
|
bf_editor_transform
|
|
|
|
bf_editor_util
|
|
|
|
bf_editor_uvedit
|
|
|
|
bf_editor_curve
|
|
|
|
bf_editor_armature
|
|
|
|
bf_editor_gpencil
|
|
|
|
bf_editor_interface
|
|
|
|
bf_editor_mesh
|
|
|
|
bf_editor_metaball
|
|
|
|
bf_editor_object
|
|
|
|
bf_editor_physics
|
|
|
|
bf_editor_render
|
|
|
|
bf_editor_screen
|
|
|
|
bf_editor_sculpt_paint
|
|
|
|
bf_editor_sound
|
|
|
|
bf_editor_animation
|
|
|
|
bf_editor_datafiles
|
2010-06-04 11:34:57 +00:00
|
|
|
|
2011-03-07 03:57:04 +00:00
|
|
|
bf_render
|
|
|
|
bf_intern_opennl
|
|
|
|
bf_python
|
|
|
|
bf_python_ext
|
2009-09-25 16:27:12 +00:00
|
|
|
bf_ikplugin
|
2010-04-11 22:12:30 +00:00
|
|
|
bf_modifiers
|
2010-04-25 01:10:03 +00:00
|
|
|
bf_blenkernel
|
2009-09-06 01:51:23 +00:00
|
|
|
bf_nodes
|
|
|
|
bf_gpu
|
2010-04-11 22:12:30 +00:00
|
|
|
bf_blenloader
|
2010-07-04 22:43:51 +00:00
|
|
|
bf_blenlib
|
2010-08-24 04:29:23 +00:00
|
|
|
bf_intern_ghost
|
|
|
|
bf_intern_string
|
2011-03-07 03:57:04 +00:00
|
|
|
bf_blenpluginapi
|
|
|
|
bf_imbuf
|
|
|
|
bf_avi
|
|
|
|
bf_imbuf_cineon
|
|
|
|
bf_imbuf_openexr
|
2010-11-18 11:42:05 +00:00
|
|
|
bf_imbuf_dds
|
Merge of the COLLADA GSoC branch into trunk.
COLLADA code is disabled by default (it has dependencies requiring manual install).
SCons and CMake builds are supported on Windows and Linux, no Mac building yet. More on building COLLADA code: http://wiki.blender.org/index.php/User:Kazanbas/Building_Collada_Branch.
The detailed command log of the merge (can be useful for educational purposes):
branch=https://svn.blender.org/svnroot/bf-blender/branches/soc-2009-chingachgook
# collada code
svn copy $branch/source/blender/collada source/blender/collada
# operator
svn merge -c 20401,20955,21077,24077,24079 $branch/source/blender/windowmanager/intern/wm_operators.c source/blender/windowmanager/intern/wm_operators.c
# menu
svn merge -c 24079 $branch/release/scripts/ui/space_info.py release/scripts/ui/space_info.py
# scons
svn merge -c 20398 $branch/source/blender/SConscript source/blender/SConscript
svn merge -c 20398,20691,20955,22726 $branch/tools/btools.py tools/btools.py
svn merge -c 20691,20955,22726 $branch/tools/Blender.py tools/Blender.py
svn merge -c 20398,20692,20955 $branch/config/linux2-config.py config/linux2-config.py
svn merge -c 22726 $branch/config/win64-vc-config.py config/win64-vc-config.py
svn merge -c 22726 $branch/config/win32-vc-config.py config/win32-vc-config.py
svn merge -c 24077 $branch/source/blender/windowmanager/SConscript source/blender/windowmanager/SConscript
# cmake
svn merge -c 23319,23905,24077,24158 $branch/CMakeLists.txt CMakeLists.txt
svn merge -c 23319 $branch/source/blender/CMakeLists.txt source/blender/CMakeLists.txt
svn merge -c 23319 $branch/source/creator/CMakeLists.txt source/creator/CMakeLists.txt
svn merge -c 23319 $branch/CMake/macros.cmake CMake/macros.cmake
svn merge -c 24077 $branch/source/blender/windowmanager/CMakeLists.txt source/blender/windowmanager/CMakeLists.txt
2009-10-30 15:35:50 +00:00
|
|
|
bf_readblenfile
|
|
|
|
bf_collada
|
2011-03-07 03:57:04 +00:00
|
|
|
bf_intern_bsp
|
|
|
|
bf_intern_bop
|
|
|
|
bf_gen_system
|
|
|
|
bf_intern_decimate
|
|
|
|
bf_intern_elbeem
|
|
|
|
bf_intern_ik
|
|
|
|
bf_intern_memutil
|
|
|
|
bf_intern_guardedalloc
|
|
|
|
bf_intern_ctr
|
|
|
|
ge_blen_routines
|
|
|
|
ge_converter
|
2010-11-18 11:42:05 +00:00
|
|
|
ge_phys_dummy
|
2011-03-07 03:57:04 +00:00
|
|
|
ge_phys_bullet
|
2010-08-24 04:29:23 +00:00
|
|
|
bf_intern_smoke
|
|
|
|
extern_minilzo
|
|
|
|
extern_lzma
|
2011-03-07 03:57:04 +00:00
|
|
|
ge_logic_ketsji
|
2010-11-18 11:42:05 +00:00
|
|
|
ge_phys_common
|
2011-03-07 03:57:04 +00:00
|
|
|
ge_logic
|
|
|
|
ge_rasterizer
|
|
|
|
ge_oglrasterizer
|
|
|
|
ge_logic_expressions
|
|
|
|
ge_scenegraph
|
|
|
|
ge_logic_network
|
2010-11-18 11:42:05 +00:00
|
|
|
bf_gen_system
|
2011-01-05 02:08:54 +00:00
|
|
|
bf_python # duplicate for BPY_driver_exec
|
2011-03-07 03:57:04 +00:00
|
|
|
ge_logic_ngnetwork
|
|
|
|
extern_bullet
|
|
|
|
ge_logic_loopbacknetwork
|
|
|
|
bf_intern_moto
|
2010-08-24 04:29:23 +00:00
|
|
|
extern_openjpeg
|
2010-11-30 18:52:39 +00:00
|
|
|
extern_redcode
|
2010-11-18 11:42:05 +00:00
|
|
|
ge_videotex
|
2009-09-06 01:51:23 +00:00
|
|
|
bf_rna
|
|
|
|
bf_dna
|
|
|
|
bf_blenfont
|
2010-08-24 04:29:23 +00:00
|
|
|
bf_intern_audaspace
|
2011-02-15 12:37:15 +00:00
|
|
|
bf_intern_mikktspace
|
2009-09-06 01:51:23 +00:00
|
|
|
)
|
|
|
|
|
2011-04-05 23:31:01 +00:00
|
|
|
if(WITH_BUILTIN_GLEW)
|
|
|
|
list(APPEND BLENDER_SORTED_LIBS extern_glew)
|
|
|
|
endif()
|
|
|
|
|
2011-02-21 13:13:08 +00:00
|
|
|
if(WITH_BINRELOC)
|
2010-12-08 08:43:06 +00:00
|
|
|
list(APPEND BLENDER_SORTED_LIBS extern_binreloc)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_CXX_GUARDEDALLOC)
|
|
|
|
list(APPEND BLENDER_SORTED_LIBS bf_intern_guardedalloc_cpp)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_IK_ITASC)
|
|
|
|
list(APPEND BLENDER_SORTED_LIBS bf_intern_itasc)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(WITH_CODEC_QUICKTIME)
|
|
|
|
list(APPEND BLENDER_SORTED_LIBS bf_quicktime)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
foreach(SORTLIB ${BLENDER_SORTED_LIBS})
|
|
|
|
set(REMLIB ${SORTLIB})
|
|
|
|
foreach(SEARCHLIB ${BLENDER_LINK_LIBS})
|
|
|
|
if(${SEARCHLIB} STREQUAL ${SORTLIB})
|
|
|
|
set(REMLIB "")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
if(REMLIB)
|
2010-12-16 12:48:30 +00:00
|
|
|
# message(STATUS "Removing library ${REMLIB} from blender linking because: not configured")
|
|
|
|
list(APPEND REM_MSG ${REMLIB})
|
2010-12-08 08:43:06 +00:00
|
|
|
list(REMOVE_ITEM BLENDER_SORTED_LIBS ${REMLIB})
|
|
|
|
endif()
|
|
|
|
endforeach()
|
2010-12-17 04:41:48 +00:00
|
|
|
if(REM_MSG)
|
|
|
|
list(SORT REM_MSG)
|
|
|
|
message(STATUS "Blender Skipping: (${REM_MSG})")
|
|
|
|
endif()
|
2010-12-08 08:43:06 +00:00
|
|
|
target_link_libraries(blender ${BLENDER_SORTED_LIBS})
|
|
|
|
#else()
|
|
|
|
# target_link_libraries(blender ${BLENDER_LINK_LIBS})
|
|
|
|
#endif()
|
|
|
|
|
|
|
|
setup_liblinks(blender)
|