summaryrefslogtreecommitdiff
path: root/testing/cmake
diff options
context:
space:
mode:
authorplutooo <tfy12vbr@student.lu.se>2013-07-29 16:32:39 -0700
committerplutooo <tfy12vbr@student.lu.se>2013-07-29 16:32:39 -0700
commit04fdd9eadb2fe8fa947d2f1e5f0329746a464cee (patch)
tree1996e7f60bb24ab83f5a5f455a9e9b304780b622 /testing/cmake
parentdb21bb61c111068768e6b50680bcb25abf4fc4f5 (diff)
Initial commit for Toxic, a new curses interface for Tox.
Still a work-in-progress.
Diffstat (limited to 'testing/cmake')
-rw-r--r--testing/cmake/toxic.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/cmake/toxic.cmake b/testing/cmake/toxic.cmake
new file mode 100644
index 00000000..494dea90
--- /dev/null
+++ b/testing/cmake/toxic.cmake
@@ -0,0 +1,11 @@
1cmake_minimum_required(VERSION 2.6.0)
2project(toxic C)
3
4set(exe_name toxic/toxic)
5
6add_executable(${exe_name}
7 toxic/main.c toxic/prompt.c)
8
9target_link_libraries(${exe_name} curses)
10
11linkCoreLibraries(${exe_name})