FreeKill/test/CMakeLists.txt
notify f0ffd68ff2
Some checks failed
Check Whitespace and New Line / check (push) Has been cancelled
Deploy Doxygen to Pages / pages (push) Has been cancelled
Doxygen and test (#385)
- 删除ModMaker
- 拆出main.cpp以便CMake
- Doxygen注释,以及CI(没测试过)
2024-10-17 19:00:02 +08:00

14 lines
217 B
CMake

find_package(Qt6 REQUIRED COMPONENTS Test)
set (TEST_LIB
libFreeKill
${QT_LIB}
Qt6::Test
)
qt_add_executable(Test test.cpp)
target_link_libraries(Test PRIVATE ${TEST_LIB})
add_test(NAME mytest COMMAND Test)