From f360d9de6ff14a66e327f6d2c985a4327be4019b Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Fri, 8 Feb 2008 20:42:49 +0000 Subject: fixed cmake scripts git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@236 90c681e8-e032-0410-971d-27865f9a5e38 --- src/plugins/General/CMakeLists.txt | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/plugins/General/CMakeLists.txt (limited to 'src/plugins/General/CMakeLists.txt') diff --git a/src/plugins/General/CMakeLists.txt b/src/plugins/General/CMakeLists.txt new file mode 100644 index 000000000..e4769ef9d --- /dev/null +++ b/src/plugins/General/CMakeLists.txt @@ -0,0 +1,24 @@ +SET(USE_DBUS TRUE CACHE BOOL "enable/disable dbus plugin") +SET(USE_SCROBBLER TRUE CACHE BOOL "enable/disable scrobbler plugin") +SET(USE_STATICON TRUE CACHE BOOL "enable/disable status icon plugin") + +IF(USE_DBUS) +MESSAGE(STATUS "DBUS ON") +#add_subdirectory(dbuscontrol) +ELSE(USE_DBUS) +MESSAGE(STATUS "DBUS OFF") +ENDIF(USE_DBUS) + +IF(USE_SCROBBLER) +MESSAGE( STATUS "SCROBBLER ON") +add_subdirectory(scrobbler) +ELSE(USE_SCROBBLER) +MESSAGE( STATUS "SCROBBLER OFF") +ENDIF(USE_SCROBBLER) + +IF(USE_STATICON) +MESSAGE( STATUS "STATICON ON") +add_subdirectory(statusicon) +ELSE(USE_STATICON) +MESSAGE( STATUS "STATICON OFF") +ENDIF(USE_STATICON) \ No newline at end of file -- cgit v1.2.3-13-gbd6f