mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
10 lines
177 B
CMake
10 lines
177 B
CMake
cmake_minimum_required(VERSION 2.6.0)
|
|
project(DHT_bootstrap C)
|
|
|
|
set(exe_name DHT_bootstrap)
|
|
|
|
add_executable(${exe_name}
|
|
DHT_bootstrap.c)
|
|
|
|
linkCoreLibraries(${exe_name})
|