summaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: 24369140867772a3bc0b37df4051a29c11026574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
include_directories(
	../include
)

add_library(erebos
	attach
	channel
	contact
	frp
	identity
	message
	network
	pairing
	pubkey
	service
	state
	storage
	sync
	time
	uuid
)

add_executable(erebos-bin
	main
)

set_target_properties(erebos-bin
	PROPERTIES OUTPUT_NAME erebos
)

target_link_libraries(erebos-bin
	erebos
	stdc++fs
	Threads::Threads
	${ZLIB_LIBRARIES}
	${OPENSSL_LIBRARIES}
	${B2_LIBRARY}
	)