diff options
Diffstat (limited to 'testing/cmake')
-rw-r--r-- | testing/cmake/timer_test.cmake | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/cmake/timer_test.cmake b/testing/cmake/timer_test.cmake new file mode 100644 index 00000000..a5f8c5ec --- /dev/null +++ b/testing/cmake/timer_test.cmake | |||
@@ -0,0 +1,9 @@ | |||
1 | cmake_minimum_required(VERSION 2.6.0) | ||
2 | project(timer_test C) | ||
3 | |||
4 | set(exe_name timer_test) | ||
5 | |||
6 | add_executable(${exe_name} | ||
7 | timer_test.c) | ||
8 | |||
9 | linkCoreLibraries(${exe_name}) | ||