~ubuntu-branches/ubuntu/lucid/blender/lucid

« back to all changes in this revision

Viewing changes to source/blender/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2009-08-06 22:32:19 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20090806223219-8z4eej1u8levu4pz
Tags: 2.49a+dfsg-0ubuntu1
* Merge from debian unstable, remaining changes:
  - debian/control: Build-depend on python-2.6 rather than python-2.5.
  - debian/misc/*.desktop: Add Spanish translation to .desktop 
    files.
  - debian/pyversions: 2.6.
  - debian/rules: Clean *.o of source/blender/python/api2_2x/
* New upstream release (LP: #382153).
* Refreshed patches:
  - 01_sanitize_sys.patch
  - 02_tmp_in_HOME
  - 10_use_systemwide_ftgl
  - 70_portability_platform_detection
* Removed patches merged upstream:
  - 30_fix_python_syntax_warning
  - 90_ubuntu_ffmpeg_52_changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: CMakeLists.txt 16366 2008-09-04 20:51:28Z blendix $
 
1
# $Id: CMakeLists.txt 20238 2009-05-17 12:25:06Z ben2610 $
2
2
# ***** BEGIN GPL LICENSE BLOCK *****
3
3
#
4
4
# This program is free software; you can redistribute it and/or
24
24
#
25
25
# ***** END GPL LICENSE BLOCK *****
26
26
 
27
 
SUBDIRS(avi nodes blenkernel blenlib blenloader blenpluginapi imbuf imbuf/intern/cineon gpu makesdna python radiosity readblenfile render src yafray)
 
27
ADD_SUBDIRECTORY(avi)
 
28
ADD_SUBDIRECTORY(nodes)
 
29
ADD_SUBDIRECTORY(blenkernel)
 
30
ADD_SUBDIRECTORY(blenlib)
 
31
ADD_SUBDIRECTORY(blenloader)
 
32
ADD_SUBDIRECTORY(blenpluginapi)
 
33
ADD_SUBDIRECTORY(imbuf)
 
34
ADD_SUBDIRECTORY(imbuf/intern/cineon)
 
35
ADD_SUBDIRECTORY(gpu)
 
36
ADD_SUBDIRECTORY(makesdna)
 
37
ADD_SUBDIRECTORY(python)
 
38
ADD_SUBDIRECTORY(radiosity)
 
39
ADD_SUBDIRECTORY(readblenfile)
 
40
ADD_SUBDIRECTORY(render)
 
41
ADD_SUBDIRECTORY(src)
 
42
ADD_SUBDIRECTORY(yafray)
28
43
 
29
44
IF(WITH_INTERNATIONAL)
30
 
  SUBDIRS(ftfont)
 
45
  ADD_SUBDIRECTORY(ftfont)
31
46
ENDIF(WITH_INTERNATIONAL)
32
47
 
33
48
IF(WITH_OPENEXR)
34
 
  SUBDIRS(imbuf/intern/openexr)
 
49
  ADD_SUBDIRECTORY(imbuf/intern/openexr)
35
50
ENDIF(WITH_OPENEXR)
36
51
 
 
52
IF(WITH_DDS)
 
53
  ADD_SUBDIRECTORY(imbuf/intern/dds)
 
54
ENDIF(WITH_DDS)
 
55
 
37
56
IF(WITH_QUICKTIME)
38
 
  SUBDIRS(quicktime)
 
57
  ADD_SUBDIRECTORY(quicktime)
39
58
ENDIF(WITH_QUICKTIME)