18 lines
444 B
CMake
18 lines
444 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_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
|
|
|
|
|
|
#add_subdirectory( doc )
|
|
add_subdirectory( src )
|
|
add_subdirectory( icons )
|