mirror of
https://github.com/QuasarApp/qca.git
synced 2025-05-11 02:09:33 +00:00
The most it is need for windows where no rpath and all dll's must be in the same dir (or in PATH environment)
16 lines
433 B
CMake
16 lines
433 B
CMake
ENABLE_TESTING()
|
|
|
|
set(cms_bin_SRCS cms.cpp)
|
|
|
|
MY_AUTOMOC( cms_bin_SRCS )
|
|
|
|
add_executable(cms ${cms_bin_SRCS} )
|
|
|
|
target_link_qca_test_libraries(cms)
|
|
|
|
FOREACH( testFileName QcaTestRootCert.pem QcaTestClientCert.pem QcaTestClientKey.pem )
|
|
CONFIGURE_FILE(${CMAKE_CURRENT_SOURCE_DIR}/${testFileName} ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/${testFileName} COPYONLY)
|
|
ENDFOREACH( testFileName )
|
|
|
|
add_qca_test(cms "CryptographicMessageSyntax")
|