~ken-vandine/unity/make-quicklists-work-again

« back to all changes in this revision

Viewing changes to CMakeLists.txt

Add first bits of unity teshhhhhhting

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
cmake_minimum_required(VERSION 2.8)
2
2
 
3
 
subdirs (unity services)
 
3
subdirs (unity services tests/unit)
4
4
 
5
5
#
6
6
# Base bits
50
50
#
51
51
# src (Compiz Plugin)
52
52
#
 
53
set (UNITY_PLUGIN_DEPS "nux-0.9 libbamf dbus-glib-1 dee-1.0 gio-2.0")
 
54
 
53
55
find_package (Compiz REQUIRED)
54
56
include (CompizPlugin)
55
57
compiz_plugin (unity 
56
 
               PKGDEPS nux-0.9 libbamf dbus-glib-1 dee-1.0 gio-2.0
 
58
               PKGDEPS ${UNITY_PLUGIN_DEPS}
57
59
               PLUGINDEPS composite opengl
58
60
               CFLAGSADD "-DINSTALLPREFIX='\"${CMAKE_INSTALL_PREFIX}\"' -DPKGDATADIR='\"${CMAKE_INSTALL_PREFIX}/share/unity/3\"'")
59
61