First semi-working implementation in c++ of remote Danbooru calls
This commit is contained in:
parent
c0cf369b92
commit
fc691a9301
9 changed files with 1341 additions and 0 deletions
20
src/libdanbooru/CMakeLists.txt
Normal file
20
src/libdanbooru/CMakeLists.txt
Normal file
|
@ -0,0 +1,20 @@
|
|||
project(libdanbooru)
|
||||
include (KDE4Defaults)
|
||||
|
||||
set (libdanbooru_VERSION_MAJOR 0)
|
||||
set (libdanbooru_VERSION_MINOR 0)
|
||||
set (libdanbooru_VERSION_PATCH 1)
|
||||
|
||||
set (libdanbooru_SRCS
|
||||
danboorupool.cpp
|
||||
danbooruservice.cpp
|
||||
danboorupost.cpp
|
||||
utils.cpp)
|
||||
|
||||
include_directories( ${CMAKE_CURRENT_BINARY_DIR}/)
|
||||
|
||||
kde4_add_library(danbooru STATIC ${libdanbooru_SRCS})
|
||||
|
||||
target_link_libraries(danbooru ${KDE4_KIO_LIBS})
|
||||
|
||||
install(TARGETS danbooru ${INSTALL_TARGETS_DEFAULT_ARGS})
|
Loading…
Add table
Add a link
Reference in a new issue