From b6fc43ccd522dfbc1e215b12adb8208c156bbd31 Mon Sep 17 00:00:00 2001 From: samelian Date: Sun, 23 Jan 2011 23:42:11 +0000 Subject: [kdebase] initial cmake support git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1216551 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcontrol/energy/CMakeLists.txt | 65 +++++++++++++++++++++++++++++++++++++ kcontrol/energy/pics/CMakeLists.txt | 12 +++++++ 2 files changed, 77 insertions(+) create mode 100644 kcontrol/energy/CMakeLists.txt create mode 100644 kcontrol/energy/pics/CMakeLists.txt (limited to 'kcontrol/energy') diff --git a/kcontrol/energy/CMakeLists.txt b/kcontrol/energy/CMakeLists.txt new file mode 100644 index 000000000..ee9bf8ab0 --- /dev/null +++ b/kcontrol/energy/CMakeLists.txt @@ -0,0 +1,65 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +option( WITH_DPMS "Enable DPMS power saving" ON ) + +if( WITH_DPMS ) + + include( CheckCSourceCompiles ) + + set( CMAKE_REQUIRED_LIBRARIES Xext ) + + check_c_source_compiles(" + #include + #include + #include + #include + #include + #include + #include + #include + int main() + { return DPMSSetTimeouts( 0, 0, 0, 0 ); }" + HAVE_DPMS ) + + if( NOT HAVE_DPMS ) + tde_message_fatal( "DPMS support are requested, but is not detected on you system.\n libXext (and its devel package) are installed?" ) + endif() + + set( XEXT_LIBRARY Xext ) + +endif() + +add_subdirectory( pics ) + +include_directories( + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_BINARY_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} +) + +##### other data ################################ + +install( FILES energy.desktop DESTINATION ${APPS_INSTALL_DIR}/.hidden ) + + +##### kcm_energy (module) ####################### + +tde_add_kpart( kcm_energy AUTOMOC + SOURCES energy.cpp + LINK kio-shared ${XEXT_LIBRARY} + DESTINATION ${PLUGIN_INSTALL_DIR} +) diff --git a/kcontrol/energy/pics/CMakeLists.txt b/kcontrol/energy/pics/CMakeLists.txt new file mode 100644 index 000000000..a65779060 --- /dev/null +++ b/kcontrol/energy/pics/CMakeLists.txt @@ -0,0 +1,12 @@ +################################################# +# +# (C) 2010-2011 Serghei Amelian +# serghei (DOT) amelian (AT) gmail.com +# +# Improvements and feedback are welcome +# +# This file is released under GPL >= 2 +# +################################################# + +install( FILES energybig.png lo-energy.png DESTINATION ${DATA_INSTALL_DIR}/kcontrol/pics ) -- cgit v1.2.3