Fix doc path
[opentx.git] / companion / src / shared / CMakeLists.txt
blob1692c70dcc2d17b7b3bf2124061c325287289928
1 include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
3 set(shared_SRCS
4   genericpanel.cpp
5   hexspinbox.cpp
6   verticalscrollarea.cpp
9 set(shared_HDRS
10   autocheckbox.h
11   autocombobox.h
12   autodoublespinbox.h
13   autohexspinbox.h
14   autolineedit.h
15   genericpanel.h
16   hexspinbox.h
19 qt5_wrap_cpp(shared_SRCS ${shared_HDRS})
21 add_library(shared ${shared_SRCS})
22 target_link_libraries(shared PRIVATE Qt5::Widgets ${CPN_COMMON_LIB})