mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
14 lines
332 B
CMake
14 lines
332 B
CMake
# Compressed archive test
|
|
|
|
qt_add_executable(compressed_archive_test
|
|
main.cpp
|
|
)
|
|
target_link_libraries(compressed_archive_test PRIVATE
|
|
Qt::Core
|
|
cbx_backend
|
|
)
|
|
if(WIN32)
|
|
target_link_libraries(compressed_archive_test PRIVATE oleaut32 ole32)
|
|
endif()
|
|
add_test(NAME compressed_archive_test COMMAND compressed_archive_test)
|