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

add_library(ViewWidgets
	CustomCommandWidget.cc
	CustomCommandWidgetController.cc
	ViewWidgetController.cc
)

target_link_libraries(ViewWidgets
	PUBLIC
		qgc
)

target_include_directories(ViewWidgets PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})