You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
#################################################
|
|
#
|
|
# (C) 2010-2011 Serghei Amelian
|
|
# serghei (DOT) amelian (AT) gmail.com
|
|
#
|
|
# Improvements and feedback are welcome
|
|
#
|
|
# This file is released under GPL >= 2
|
|
#
|
|
#################################################
|
|
|
|
include( ConfigureChecks.cmake )
|
|
|
|
if( HAVE_INTTYPES_H )
|
|
add_definitions( -DHAVE_INTTYPES_H )
|
|
elseif( HAVE_STDINT_H )
|
|
add_definitions( -DHAVE_STDINT_H )
|
|
endif()
|
|
|
|
|
|
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_BINARY_DIR}
|
|
${TDE_INCLUDE_DIR}
|
|
${TQT_INCLUDE_DIRS}
|
|
)
|
|
|
|
|
|
##### kyahoo (static) ###########################
|
|
|
|
tde_add_library( kyahoo STATIC_PIC AUTOMOC
|
|
SOURCES
|
|
client.cpp task.cpp connector.cpp inputprotocolbase.cpp
|
|
ymsgprotocol.cpp ymsgtransfer.cpp transfer.cpp
|
|
yahoobytestream.cpp bytestream.cpp yahooclientstream.cpp
|
|
yahooconnector.cpp safedelete.cpp stream.cpp sha1.c
|
|
md5.c crypt.c coreprotocol.cpp logintask.cpp libyahoo.c
|
|
yahoo_fn.c listtask.cpp statusnotifiertask.cpp
|
|
mailnotifiertask.cpp messagereceivertask.cpp
|
|
sendnotifytask.cpp sendmessagetask.cpp logofftask.cpp
|
|
changestatustask.cpp modifybuddytask.cpp picturenotifiertask.cpp
|
|
requestpicturetask.cpp yahoobuddyiconloader.cpp
|
|
stealthtask.cpp sendpicturetask.cpp webcamtask.cpp
|
|
conferencetask.cpp sendauthresptask.cpp pingtask.cpp
|
|
yabtask.cpp yabentry.cpp modifyyabtask.cpp chatsessiontask.cpp
|
|
sendfiletask.cpp filetransfernotifiertask.cpp
|
|
receivefiletask.cpp yahoochattask.cpp
|
|
)
|