8 lines
155 B
CMake
8 lines
155 B
CMake
|
cmake_minimum_required(VERSION 2.8)
|
||
|
|
||
|
# test
|
||
|
include_directories(../src)
|
||
|
add_executable(test.exe test.c ../src/zip.c)
|
||
|
|
||
|
add_test(NAME test COMMAND test.exe)
|