summaryrefslogtreecommitdiff
path: root/testing/toxic/CMakeLists.txt
blob: 4f9785d53de4a44ee8c2f9ae1eb826a973999c58 (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}
	main.c
	prompt.c)

target_link_libraries(${exe_name}
	curses)

linkCoreLibraries(${exe_name})