diff options
Diffstat (limited to 'testing/cmake')
-rw-r--r-- | testing/cmake/DHT_cryptosendfiletest.cmake | 9 | ||||
-rw-r--r-- | testing/cmake/DHT_sendfiletest.cmake | 9 | ||||
-rw-r--r-- | testing/cmake/DHT_test.cmake | 9 | ||||
-rw-r--r-- | testing/cmake/Lossless_UDP_testclient.cmake | 9 | ||||
-rw-r--r-- | testing/cmake/Lossless_UDP_testserver.cmake | 9 | ||||
-rw-r--r-- | testing/cmake/Messenger_test.cmake | 9 | ||||
-rw-r--r-- | testing/cmake/nTox.cmake | 11 |
7 files changed, 65 insertions, 0 deletions
diff --git a/testing/cmake/DHT_cryptosendfiletest.cmake b/testing/cmake/DHT_cryptosendfiletest.cmake new file mode 100644 index 00000000..8d6079f8 --- /dev/null +++ b/testing/cmake/DHT_cryptosendfiletest.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(DHT_cryptosendfiletest C) | ||
3 | |||
4 | set(exe_name DHT_cryptosendfiletest) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | DHT_cryptosendfiletest.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) \ No newline at end of file | ||
diff --git a/testing/cmake/DHT_sendfiletest.cmake b/testing/cmake/DHT_sendfiletest.cmake new file mode 100644 index 00000000..93737914 --- /dev/null +++ b/testing/cmake/DHT_sendfiletest.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(DHT_sendfiletest C) | ||
3 | |||
4 | set(exe_name DHT_sendfiletest) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | DHT_sendfiletest.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||
diff --git a/testing/cmake/DHT_test.cmake b/testing/cmake/DHT_test.cmake new file mode 100644 index 00000000..bcde4370 --- /dev/null +++ b/testing/cmake/DHT_test.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(DHT_test C) | ||
3 | |||
4 | set(exe_name DHT_test) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | DHT_test.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||
diff --git a/testing/cmake/Lossless_UDP_testclient.cmake b/testing/cmake/Lossless_UDP_testclient.cmake new file mode 100644 index 00000000..e894d228 --- /dev/null +++ b/testing/cmake/Lossless_UDP_testclient.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(Lossless_UDP_testclient C) | ||
3 | |||
4 | set(exe_name Lossless_UDP_testclient) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | Lossless_UDP_testclient.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||
diff --git a/testing/cmake/Lossless_UDP_testserver.cmake b/testing/cmake/Lossless_UDP_testserver.cmake new file mode 100644 index 00000000..04306c1a --- /dev/null +++ b/testing/cmake/Lossless_UDP_testserver.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(Lossless_UDP_testserver C) | ||
3 | |||
4 | set(exe_name Lossless_UDP_testserver) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | Lossless_UDP_testserver.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||
diff --git a/testing/cmake/Messenger_test.cmake b/testing/cmake/Messenger_test.cmake new file mode 100644 index 00000000..a85e043d --- /dev/null +++ b/testing/cmake/Messenger_test.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(Messenger_test C) | ||
3 | |||
4 | set(exe_name Messenger_test) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | Messenger_test.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||
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}) | ||