~ubuntu-branches/ubuntu/quantal/compiz/quantal

« back to all changes in this revision

Viewing changes to plugins/expo/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher, Sam Spilsbury, Timo Jyrinki
  • Date: 2012-08-31 22:59:50 UTC
  • mfrom: (3248.2.13) (3275.1.12 ubuntu)
  • Revision ID: package-import@ubuntu.com-20120831225950-cnw9yf4f5t70gtwj
Tags: 1:0.9.8.0-0ubuntu1
* debian/control, debian/rules: 
  - enable gles on armel and armhf
  - use dh-translations rather than custom code

[ Sam Spilsbury ]
* Enable OpenGL ES building 
  - Refresh debian/patches/workaround_broken_drivers.patch
  - Remove non-ported plugins from compiz-plugins
  - Add FindOpenGLES2.cmake to compiz-dev

[ Timo Jyrinki ]
* New upstream release.
  - Code to make compiz work on GLES. This includes several changes 
    to the compiz API. (LP: #201342) (LP: #901097) (LP: #1004251)
    (LP: #1037710)
  - Draft first 0.9.8.0 NEWS and bump VERSION
* debian/patches/compiz-package-gles2.patch:
  - Remove, obsoleted by the upstream GLES work 
* Disable plugins that don't work on pure GLES on armhf/armel:
  - bench, firepaint, mblur, showmouse, splash, showrepaint, td, widget

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
find_package (Compiz REQUIRED)
2
 
include (FindOpenGL)
3
2
include (CompizPlugin)
4
3
 
5
 
if (OPENGL_GLU_FOUND)
6
 
    add_subdirectory (src/click_threshold)
7
 
    include_directories (src/click_threshold/include)
8
 
 
9
 
    compiz_plugin (expo PLUGINDEPS composite opengl LIBRARIES ${OPENGL_glu_LIBRARY} compiz_expo_click_threshold INCDIRS ${OPENGL_INCLUDE_DIR})
10
 
endif (OPENGL_GLU_FOUND)
11
 
 
 
4
add_subdirectory (src/click_threshold)
 
5
include_directories (src/click_threshold/include)
 
6
 
 
7
compiz_plugin (expo PLUGINDEPS composite opengl LIBRARIES compiz_expo_click_threshold)