summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 26f56e4c136c6ec671fb497b7283bdaf8b10790c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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)