summaryrefslogtreecommitdiff
path: root/auto_tests/cmake/friends_test.cmake
diff options
context:
space:
mode:
authorMaxim Biro <nurupo.contributions@gmail.com>2013-08-07 20:32:47 -0400
committerMaxim Biro <nurupo.contributions@gmail.com>2013-08-07 20:32:47 -0400
commitd72f828d6f64aeac48a8134e4a20caade1798efd (patch)
treeff8a73c5799ae35fc3c36b31d80c72b1d683fc66 /auto_tests/cmake/friends_test.cmake
parent4779561ea3076baa50288f848fb929dc1e5b4025 (diff)
parentb68c1203f14d5948c870b922fdb251df393bf2d9 (diff)
Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Core
Diffstat (limited to 'auto_tests/cmake/friends_test.cmake')
-rw-r--r--auto_tests/cmake/friends_test.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/auto_tests/cmake/friends_test.cmake b/auto_tests/cmake/friends_test.cmake
new file mode 100644
index 00000000..5c2d0fc6
--- /dev/null
+++ b/auto_tests/cmake/friends_test.cmake
@@ -0,0 +1,10 @@
1cmake_minimum_required(VERSION 2.6.0)
2project(friends_test C)
3set(exe_name friends_test)
4
5add_executable(${exe_name}
6 friends_test.c)
7
8linkCoreLibraries(${exe_name})
9add_dependencies(${exe_name} Check)
10target_link_libraries(${exe_name} check)