diff options
author | irungentoo <irungentoo@gmail.com> | 2013-07-29 16:39:40 -0700 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-07-29 16:39:40 -0700 |
commit | 94aebcc390ac3abce6ea36f61061b70e5325c574 (patch) | |
tree | 1996e7f60bb24ab83f5a5f455a9e9b304780b622 /testing/cmake | |
parent | db21bb61c111068768e6b50680bcb25abf4fc4f5 (diff) | |
parent | 04fdd9eadb2fe8fa947d2f1e5f0329746a464cee (diff) |
Merge pull request #142 from plutooo/master
Initial commit for Toxic, a new curses interface for Tox.
Diffstat (limited to 'testing/cmake')
-rw-r--r-- | testing/cmake/toxic.cmake | 11 |
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 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(toxic C) | ||
3 | |||
4 | set(exe_name toxic/toxic) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | toxic/main.c toxic/prompt.c) | ||
8 | |||
9 | target_link_libraries(${exe_name} curses) | ||
10 | |||
11 | linkCoreLibraries(${exe_name}) | ||