summaryrefslogtreecommitdiff
path: root/testing/cmake/toxic.cmake
blob: 1ffab788d996e194239d7d677bfdcee8aeb0def8 (plain)
1
2
3
4
5
6
7
8
9
10
11
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})