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.
42 lines
639 B
42 lines
639 B
|
|
include_directories(
|
|
${CMAKE_BINARY_DIR}
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}/include
|
|
${ZLIB_INCLUDE_DIRS}
|
|
)
|
|
|
|
link_directories()
|
|
|
|
|
|
##### prepare includes
|
|
|
|
tqt_install_includes( ntqassistantclient.h )
|
|
|
|
|
|
##### tqassistantclient (shared)
|
|
|
|
add_definitions( -DQT_INTERNAL_NETWORK )
|
|
|
|
tde_add_library( tqassistantclient SHARED
|
|
|
|
SOURCES
|
|
qassistantclient.cpp
|
|
|
|
LINK
|
|
tqt-mt-shared
|
|
|
|
VERSION 1.0.0
|
|
|
|
DESTINATION ${LIB_INSTALL_DIR}
|
|
)
|
|
|
|
set_property(
|
|
TARGET tqassistantclient-shared
|
|
APPEND PROPERTY COMPILE_DEFINITIONS
|
|
QT_INTERNAL_NETWORK
|
|
)
|
|
|
|
tqt_automoc( tqassistantclient-shared )
|