~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/creator/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: CMakeLists.txt,v 1.12 2007/01/23 20:08:23 hos Exp $
 
1
# $Id: CMakeLists.txt,v 1.15 2007/03/27 21:58:02 hos Exp $
2
2
# ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
3
3
#
4
4
# This program is free software; you can redistribute it and/or
32
32
INCLUDE_DIRECTORIES(../../intern/guardedalloc
33
33
  ../blender/blenlib
34
34
  ../blender/blenkernel
 
35
  ../blender/nodes
35
36
  ../blender/include
36
37
  ../blender/blenloader
37
38
  ../blender/imbuf
186
187
 
187
188
ADD_DEPENDENCIES(blender makesdna)
188
189
 
189
 
SETUP_LIBLINKS(blender)
190
190
FILE(READ ${CMAKE_BINARY_DIR}/cmake_blender_libs.txt BLENDER_LINK_LIBS)
191
191
 
192
 
SET(BLENDER_LINK_LIBS ${BLENDER_LINK_LIBS} src blender_python blender_render blender_radiosity blender_IK bf_elbeem)
 
192
SET(BLENDER_LINK_LIBS bf_nodes ${BLENDER_LINK_LIBS} src blender_python blender_render blender_radiosity blender_IK bf_elbeem)
193
193
 
194
194
IF(UNIX)
195
195
  # Sort libraries
205
205
    blender_ONL 
206
206
    blender_python 
207
207
    bf_blenkernel 
 
208
    bf_nodes
208
209
    bf_blenloader 
209
210
    bf_blenpluginapi 
210
211
    bf_imbuf 
272
273
  TARGET_LINK_LIBRARIES(blender ${BLENDER_LINK_LIBS})
273
274
ENDIF(UNIX)
274
275
 
 
276
SETUP_LIBLINKS(blender)