1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
if HAVE_WNCK
include $(top_srcdir)/build.rules.mk
endif
ASSEMBLY=WindowManager
FILES = \
src/CurrentApplicationItem.cs \
src/CurrentWindowItem.cs \
src/IWindowList.cs \
src/WindowItem.cs \
src/WindowItemSource.cs \
src/Screen/CurrentScreenItem.cs \
src/Screen/ScreenItem.cs \
src/Screen/ScreenItemSource.cs \
src/Screen/ScreenActionAction.cs \
src/Screen/ScreenCascadeAction.cs \
src/Screen/ScreenRestoreAction.cs \
src/Screen/ScreenSwapAction.cs \
src/Screen/ScreenTileAction.cs \
src/Screen/ShowDesktopAction.cs \
src/WindowActions/WindowActionAction.cs \
src/WindowActions/WindowCloseAction.cs \
src/WindowActions/WindowFocusAction.cs \
src/WindowActions/WindowMaximizeAction.cs \
src/WindowActions/WindowMinimizeAction.cs \
src/WindowActions/WindowMoveAction.cs \
src/Wink/ScreenUtils.cs \
src/Wink/WindowControl.cs \
src/Wink/WnckWindow_Extensions.cs \
src/Wink/Position.cs \
src/Wink/Viewport.cs \
src/Wink/WindowUtils.cs \
src/Xlib/X11Atoms.cs \
src/Xlib/Xlib.cs
DLL_CONFIG_FILES = \
WindowManager.dll.config
RESOURCES = \
Resources/WindowManager.addin.xml
REFERENCES = \
System \
System.Core \
Mono.Posix \
$(WNCK_SHARP_10_LIBS) \
$(GTK_SHARP_20_LIBS) \
$(GLIB_SHARP_20_LIBS) \
$(GNOME_DESKTOP_SHARP_20_LIBS) \
$(DO_PLATFORM_LIBS) \
$(DO_UNIVERSE_LIBS)
|