CMakeLists.txt 198 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14

add_library(Camera
	QGCCameraControl.cc
	QGCCameraIO.cc
	QGCCameraManager.cc
)

target_link_libraries(Camera
	PUBLIC
		qgc
)

target_include_directories(Camera PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})