mirror of
https://github.com/QuasarApp/qca.git
synced 2025-04-27 20:14:32 +00:00
Added new cmake variable SHARED_LIBRARY. By default is on. When it is off QCA library, plugins, tools, examples and unittests will be built as static. Also if is used static Qt plugins will be built as static. Tested with Qt4.
9 lines
232 B
CMake
9 lines
232 B
CMake
set(sslservtest_bin_SRCS sslservtest.cpp)
|
|
|
|
MY_AUTOMOC( sslservtest_bin_SRCS )
|
|
|
|
add_executable(sslservtest ${sslservtest_bin_SRCS})
|
|
|
|
target_link_qca_libraries(sslservtest)
|
|
target_link_libraries(sslservtest ${QT_QTNETWORK_LIBRARY})
|