diff options
author | Guillaume Seguin <guillaume@segu.in> | 2010-02-04 18:07:05 +0100 |
---|---|---|
committer | Guillaume Seguin <guillaume@segu.in> | 2010-02-04 18:07:05 +0100 |
commit | c5dbe26eae92fd7594b675fb9de8125771971e21 (patch) | |
tree | 74f6f2e6f27660e6cb3ff580bc3b584fc6554b84 /CMakeLists.txt | |
download | plugins-extra-c5dbe26eae92fd7594b675fb9de8125771971e21.tar.gz plugins-extra-c5dbe26eae92fd7594b675fb9de8125771971e21.tar.bz2 |
Initial import
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..55a73c9 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,27 @@ +project (compiz-plugins-extra) + +cmake_minimum_required (VERSION 2.4) + +find_package (Compiz REQUIRED) + +include (CompizCommon) +include (CompizPackage) + +set (COMPIZ_VERSION_MAJOR 0) +set (COMPIZ_VERSION_MINOR 9) +set (COMPIZ_VERSION_MICRO 0) +set (VERSION ${COMPIZ_VERSION_MAJOR}.${COMPIZ_VERSION_MINOR}.${COMPIZ_VERSION_MICRO}) + +set (COMPIZ_PLUGIN_INSTALL_TYPE "package") + +set (ALL_LINGUAS af ar bg bn bn_IN bs ca cs cy da de el en_GB en_US es eu et fi fr gl gu he hi hr hu id it ja ka km ko lo lt mk mr nb nl or pa pl pt pt_BR ro ru sk sl sr sv ta tr uk vi xh zh_CN zh_TW zu) +set (GETTEXT_PACKAGE compiz-plugins-extra) + +compiz_add_plugins_in_folder ("${CMAKE_SOURCE_DIR}") + +compiz_print_configure_header ("Compiz Plugins Extra") +compiz_print_plugin_stats ("${CMAKE_SOURCE_DIR}") +compiz_print_configure_footer () + +compiz_package_generation ("Compiz Plugins Extra") +compiz_add_uninstall () |