~focus-follows-mouse/ubuntu/precise/compiz/fix-883383

« back to all changes in this revision

Viewing changes to .pc/102_git_fix_load_images.patch/src/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2011-03-22 21:45:34 UTC
  • mfrom: (0.168.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20110322214534-l6i6ds54os5uoqt1
Tags: 1:0.9.4git20110322-0ubuntu1
* New upstream bug fix snapshot:
  - Application windows can sometimes fail to display and will
    mask regions of the screen (LP: #709461)
  - Compiz switcher Alt-Tab order is not predictable - should
    maintain LIFO ordering in application switcher (LP: #175874)
  - after compiz crashed, gnome-panel isn't mapped again (LP: #711378)
  - invisible windows border problem (LP: #710271)
  - Compiz thinks you are clicking in an edge window when you
    are not (LP: #734250)
  - Add test case for invisible window regressions (LP: #736876)
  - often can't alt-click-dnd to move the focussed dialog (LP: #711911)
  - When windows open for the first time they should not hide (LP: #723878)
  - Unity Grid is broken for multi-monitor setups (LP: #709221)
  - Pixmaps trashed during animations when window is unmapped (LP: #733331)
  - Windows have blank decorations when rapidly closing and
    reopening (LP: #733328)
  - Unity is not restored on unity/compiz crash: compiz doesn't register
    properly with gnome-session (LP: #716462)
* remove the patch taken from upstream
* refresh u-w-d patch with latest upstream work
* debian/compiz-core.install:
  - image move to the final destination
* debian/patches/100_bump_core.h.patch:
  - bump for ABI breakage
* debian/compiz-decorator:
  - use gtk-window-decorator and not unity-window-decorator as it's really
    crashy for now (will probably redo an upload tomorrow with a fixed
    decorator)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
include (CompizBcop)
2
 
 
3
 
compiz_add_bcop_targets (
4
 
    core
5
 
    ${compiz_BINARY_DIR}/generated/core.xml.in
6
 
    _bcop_sources
7
 
)
8
 
 
9
 
include_directories (
10
 
    ${compiz_SOURCE_DIR}/include
11
 
    ${compiz_BINARY_DIR}
12
 
    ${compiz_BINARY_DIR}/generated
13
 
    ${CMAKE_CURRENT_SOURCE_DIR}
14
 
    ${COMPIZ_INCLUDE_DIRS}
15
 
)
16
 
 
17
 
add_definitions (
18
 
    -DHAVE_CONFIG_H
19
 
    -DPLUGINDIR=\\\"${compiz_plugindir}\\\"
20
 
    -DIMAGEDIR=\\\"${compiz_imagedir}\\\"
21
 
    -DMETADATADIR=\\\"${compiz_metadatadir}\\\"
22
 
)
23
 
 
24
 
link_directories (
25
 
    ${COMPIZ_LINK_DIRS}
26
 
)
27
 
 
28
 
add_executable (compiz
29
 
    region.cpp
30
 
    atoms.cpp
31
 
    timer.cpp
32
 
    main.cpp
33
 
    actions.cpp
34
 
    screen.cpp
35
 
    window.cpp
36
 
    action.cpp
37
 
    option.cpp
38
 
    string.cpp
39
 
    match.cpp
40
 
    pluginclasses.cpp
41
 
    event.cpp
42
 
    plugin.cpp
43
 
    session.cpp
44
 
    output.cpp
45
 
    rect.cpp
46
 
    size.cpp
47
 
    point.cpp
48
 
    windowgeometry.cpp
49
 
    icon.cpp
50
 
    modifierhandler.cpp
51
 
    propertywriter.cpp
52
 
    eventsource.cpp
53
 
    ${_bcop_sources}
54
 
)
55
 
 
56
 
target_link_libraries (
57
 
    compiz ${COMPIZ_LIBRARIES} m pthread dl
58
 
)
59
 
 
60
 
install (
61
 
    TARGETS compiz
62
 
    DESTINATION ${COMPIZ_DESTDIR}${exec_prefix}
63
 
)