summaryrefslogtreecommitdiff
path: root/testing/toxic/CMakeLists.txt
blob: 43eb379ab2d702c4682be0407db4fc8858213ec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
cmake_minimum_required(VERSION 2.6.0)
project(toxic C)

set(exe_name toxic)

add_executable(${exe_name}
	toxic/main.c
	toxic/prompt.c)

target_link_libraries(${exe_name}
	curses)

linkCoreLibraries(${exe_name})