mirror of
https://github.com/YACReader/yacreader
synced 2026-03-01 10:22:58 -05:00
Migrate the build system to cmake
This commit is contained in:
13
tests/compressed_archive_test/CMakeLists.txt
Normal file
13
tests/compressed_archive_test/CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
||||
# 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)
|
||||
Reference in New Issue
Block a user