acadeef76d
Splitted up ping receiver from notification receiver in KDE Improved pausemusic receiver Fixed same computer being discovered multiple times Fixed some other minor bugs and compilation warnings
15 lines
289 B
CMake
15 lines
289 B
CMake
project(kdeconnect)
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
find_package(KDE4 REQUIRED)
|
|
|
|
if(CMAKE_COMPILER_IS_GNUCXX)
|
|
add_definitions(-std=gnu++0x)
|
|
endif()
|
|
|
|
include(KDE4Defaults)
|
|
include_directories(${KDE4_INCLUDES})
|
|
|
|
add_subdirectory(daemon)
|
|
add_subdirectory(kcm)
|
|
add_subdirectory(test)
|