qca/examples/ssltest/CMakeLists.txt
Tobias Junghans 2c3992f075 Add Qt 6 build support
The Core5Compat module is still required for QTextCodec and some
difficult remaining QRegExp -> QRegularExpression migrations.
2021-05-29 22:28:27 +00:00

11 lines
232 B
CMake

set(ssltest_bin_SRCS ssltest.cpp)
add_executable(ssltest ${ssltest_bin_SRCS})
target_link_qca_libraries(ssltest)
if(QT6)
target_link_libraries(ssltest Qt6::Network)
else()
target_link_libraries(ssltest Qt5::Network)
endif()