mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-19 19:36:11 +00:00
14 lines
325 B
CMake
14 lines
325 B
CMake
find_package(Qt5 REQUIRED COMPONENTS Test)
|
|
|
|
set(TEST_HEADER_FILES
|
|
AutoTest.h
|
|
CutterTest.h)
|
|
|
|
set(TEST_SOURCE_FILES
|
|
main.cpp
|
|
CutterTest.cpp
|
|
TestHexdumpWidget.cpp)
|
|
|
|
add_executable(CutterTest ${TEST_SOURCE_FILES} ${TEST_HEADER_FILES})
|
|
target_link_libraries(CutterTest CutterLib Qt5::Test)
|