diff options
author | irungentoo <irungentoo@gmail.com> | 2013-08-13 04:14:01 -0700 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-08-13 04:14:01 -0700 |
commit | cb4f67b37a1a5070387c27d475c23366645bc1cf (patch) | |
tree | dd8d64ea8814f7a26a0838a0a2e9508f62a18e95 /testing/cmake/timer_test.cmake | |
parent | 4cc4e79088c3478e1d50606006a39c2c872da0db (diff) | |
parent | 471c14809004bd0ac531cbb79b06906f128cb666 (diff) |
Merge pull request #441 from slvr/timer
Timer Subsystem
Diffstat (limited to 'testing/cmake/timer_test.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}) | ||