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

set(exe_name toxic)

add_executable(${exe_name}
	main.c
	prompt.c
	friendlist.c)

target_link_libraries(${exe_name}
	curses)

linkCoreLibraries(${exe_name})