summaryrefslogtreecommitdiff
path: root/core/CMakeLists.txt
blob: eacb772cd2e5b197561d224c9594bfe672487fc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
cmake_minimum_required(VERSION 2.6.0)
project(toxcore C)

set(core_sources
	DHT.c
	network.c
	Lossless_UDP.c
	net_crypto.c
	friend_requests.c
	LAN_discovery.c
	Messenger.c)

if(SHARED_TOXCORE)
	add_library(toxcore SHARED ${core_sources})
else()
	add_library(toxcore ${core_sources})
endif()

target_link_libraries(toxcore ${LINK_CRYPTO_LIBRARY})

if(WIN32)
	target_link_libraries(toxcore ws2_32)
endif()