snorenotify/CMakeLists.txt

43 lines
1.2 KiB
CMake
Raw Normal View History

project( SnoreNotify )
cmake_minimum_required( VERSION 2.8 )
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_SOURCE_DIR}/cmake/modules ${CMAKE_PREFIX_PATH}/share/apps/cmake/modules)
2011-11-12 18:20:58 +00:00
#######################################################################
option(WITH_FREEDESKTOP_FRONTEND "Build the freedesktop frontend" OFF)
option(WITH_GROWL_BACKEND "Build the Growl backend" ON)
2011-11-12 18:20:58 +00:00
#######################################################################
set(CMAKE_INCLUDE_CURRENT_DIR ON)
find_package(KDE4)
2011-08-03 13:27:48 +00:00
if(MINGW)
SET (CMAKE_RC_COMPILER_INIT windres)
ENABLE_LANGUAGE (RC)
SET (CMAKE_RC_COMPILE_OBJECT "<CMAKE_RC_COMPILER> -O coff -i <SOURCE> -o <OBJECT>")
endif(MINGW)
2011-08-02 15:50:07 +00:00
if(KDE4_FOUND)
add_definitions(-DHAVE_KDE ${KDE4_DEFINITIONS} -D_UNICODE)
include_directories(${KDE4_INCLUDES})
else(KDE4_FOUND)
include(NoKDE)
endif(KDE4_FOUND)
2011-07-19 16:18:30 +00:00
find_package( CryptoPP )
2011-07-25 15:15:58 +00:00
find_package( Boost COMPONENTS system thread)
2011-11-09 22:13:46 +00:00
if(Boost_USE_STATIC_RUNTIME)
add_definitions(-DBOOST_THREAD_USE_LIB )
endif(Boost_USE_STATIC_RUNTIME)
set(PLUGIN_INSTALL_PATH LIBRARY DESTINATION bin/snoreplugins)
add_subdirectory(data)
add_subdirectory(share)
add_subdirectory(src)