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

add_library(FollowMe
	FollowMe.cc
)

target_link_libraries(FollowMe
	PUBLIC
		qgc
)

target_include_directories(FollowMe
	PUBLIC
		${CMAKE_CURRENT_SOURCE_DIR}
	)