kde-extraapps/about-distro/CMakeLists.txt

22 lines
527 B
Text
Raw Normal View History

2014-11-22 18:46:59 +00:00
project(kcm-about-distro)
if(${CMAKE_SOURCE_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
find_package(KDE4 4.18.0 REQUIRED)
include(KDE4Defaults)
include_directories(${KDE4_INCLUDES})
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
endif()
2014-11-22 18:46:59 +00:00
set(MAJOR_VERSION "1")
set(MINOR_VERSION "1")
set(PATCH_VERSION "0")
set(SUFFIX_VERSION "")
set(VERSION_STRING "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}")
set(VERSION_STRING_FULL "${VERSION_STRING}")
2014-11-22 18:46:59 +00:00
add_definitions(-std=c++0x)
add_subdirectory(src)