diff options
Diffstat (limited to 'testing/cmake/nTox.cmake')
-rw-r--r-- | testing/cmake/nTox.cmake | 11 |
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 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(nTox C) | ||
3 | |||
4 | set(exe_name nTox) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | nTox.c) | ||
8 | |||
9 | target_link_libraries(${exe_name} ncurses) | ||
10 | |||
11 | linkCoreLibraries(${exe_name}) | ||