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

set(exe_name toxic)

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

target_link_libraries(${exe_name}
	curses)

linkCoreLibraries(${exe_name})