danbooru-client/CMakeLists.txt
Luca Beltrame 244b930185 Build system changes:
- Use QStringBuilder
- Switch on C+11 support
- Add the new UI file
2013-12-24 10:11:13 +01:00

19 lines
465 B
CMake

project(danbooru_client)
set(danbooru_client_VERSION_MAJOR 0)
set(danbooru_client_VERSION_MINOR 1)
find_package(KDE4 REQUIRED)
include (KDE4Defaults)
find_package(QJSON REQUIRED)
include_directories( ${KDE4_INCLUDES} ${QT_INCLUDES} )
add_definitions (${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
add_definitions(-DQT_USE_QSTRINGBUILDER)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
#add_subdirectory( doc )
add_subdirectory( src )
add_subdirectory( icons )