mirror of
https://github.com/TokTok/c-toxcore
synced 2026-05-05 09:26:33 +00:00
10 lines
186 B
CMake
10 lines
186 B
CMake
cmake_minimum_required(VERSION 2.6.0)
|
|
project(Messenger_test C)
|
|
|
|
set(exe_name Messenger_test)
|
|
|
|
add_executable(${exe_name}
|
|
Messenger_test.c misc_tools.c)
|
|
|
|
linkCoreLibraries(${exe_name})
|