summaryrefslogtreecommitdiffstats
path: root/src/CMakeLists.txt
blob: 509f2fb2f37d2b5c12b9e1ab26ea0a9495f210d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
set(anchorman_SRCS
	anchorman.c
)

include_directories(${GSTREAMER_INCLUDE_DIRS} ${GUDEV_INCLUDE_DIRS})

add_executable(anchorman ${anchorman_SRCS})

target_link_libraries(anchorman ${GSTREAMER_LIBRARIES} ${GUDEV_LIBRARIES})

install(TARGETS anchorman DESTINATION bin)