summaryrefslogtreecommitdiff
path: root/testing/cmake/nTox.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'testing/cmake/nTox.cmake')
-rw-r--r--testing/cmake/nTox.cmake11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/cmake/nTox.cmake b/testing/cmake/nTox.cmake
new file mode 100644
index 00000000..1656bc80
--- /dev/null
+++ b/testing/cmake/nTox.cmake
@@ -0,0 +1,11 @@
1cmake_minimum_required(VERSION 2.6.0)
2project(nTox C)
3
4set(exe_name nTox)
5
6add_executable(${exe_name}
7 nTox.c)
8
9target_link_libraries(${exe_name} ncurses)
10
11linkCoreLibraries(${exe_name})