mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Added a simple cmake list
This commit is contained in:
parent
8bc40b7f13
commit
20c7244357
17
CMakeLists.txt
Normal file
17
CMakeLists.txt
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
cmake_minimum_required(VERSION 2.6.0)
|
||||||
|
project(TOX)
|
||||||
|
|
||||||
|
set(core_sources
|
||||||
|
core/DHT.c)
|
||||||
|
|
||||||
|
set(test_sources
|
||||||
|
testing/DHT_test.c)
|
||||||
|
|
||||||
|
add_executable(TOX-app
|
||||||
|
${core_sources}
|
||||||
|
${test_sources})
|
||||||
|
|
||||||
|
|
||||||
|
if(WIN32)
|
||||||
|
target_link_libraries(TOX-app ws2_32)
|
||||||
|
endif(WIN32)
|
Loading…
Reference in New Issue
Block a user