aboutsummaryrefslogtreecommitdiffstats
path: root/swaygrab/CMakeLists.txt
blob: 672a62cd4922efaf70cfda545f1a9f49fe6f4591 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
project(swaygrab)

set(CMAKE_CURRENT_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR}/../bin/)

file(GLOB sources ${PROJECT_SOURCE_DIR}/*.c)
file(GLOB common ${PROJECT_SOURCE_DIR}/../common/*.c)

add_executable(swaygrab
	${sources}
	${common}
)

target_link_libraries(swaygrab
	rt
)

install(
	TARGETS swaygrab
	RUNTIME
	DESTINATION bin
	COMPONENT runtime
)