mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-03 03:16:04 +00:00
10 lines
161 B
CMake
10 lines
161 B
CMake
cmake_minimum_required(VERSION 2.6.0)
|
|
project(timer_test C)
|
|
|
|
set(exe_name timer_test)
|
|
|
|
add_executable(${exe_name}
|
|
timer_test.c)
|
|
|
|
linkCoreLibraries(${exe_name})
|