2017-11-27 20:48:33 +00:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
|
|
|
|
|
|
|
# test
|
2019-11-19 19:30:40 +00:00
|
|
|
set(test_out test.out)
|
|
|
|
|
|
|
|
add_executable(${test_out} test.c)
|
|
|
|
target_link_libraries(${test_out} zip)
|
|
|
|
|
|
|
|
add_test(NAME ${test_out} COMMAND ${test_out})
|
2017-11-27 20:48:33 +00:00
|
|
|
|
2019-11-19 19:30:40 +00:00
|
|
|
set(test_out ${test_out} PARENT_SCOPE)
|