summaryrefslogtreecommitdiff
path: root/testing/cmake
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2013-07-30 11:55:46 -0400
committerMaxim Biro <nurupo.contributions@gmail.com>2013-07-30 12:08:48 -0400
commit184eaacd2a0e49277367001b209f1844ea017ace (patch)
treeac5f77afa97af669fab1b39d635ff114f0d4f26c /testing/cmake
parentc10d2317caab51797f72e20557e89d4e81287998 (diff)
Fixed cmake
Diffstat (limited to 'testing/cmake')
-rw-r--r--testing/cmake/toxic.cmake11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/cmake/toxic.cmake b/testing/cmake/toxic.cmake
deleted file mode 100644
index 1ffab788..00000000
--- a/testing/cmake/toxic.cmake
+++ /dev/null
@@ -1,11 +0,0 @@
1cmake_minimum_required(VERSION 2.6.0)
2project(toxic C)
3
4set(exe_name toxic)
5
6add_executable(${exe_name}
7 toxic/main.c toxic/prompt.c)
8
9target_link_libraries(${exe_name} curses)
10
11linkCoreLibraries(${exe_name})