mirror of
https://github.com/redstrate/Astra.git
synced 2025-04-23 12:57:45 +00:00
13 lines
No EOL
316 B
CMake
13 lines
No EOL
316 B
CMake
set(HEADERS
|
|
include/tabletinterface.h)
|
|
|
|
set(SRC
|
|
src/tabletinterface.cpp)
|
|
|
|
add_library(astra_tablet STATIC ${HEADERS} ${SRC})
|
|
target_include_directories(astra_tablet PUBLIC include)
|
|
target_link_libraries(astra_tablet PUBLIC
|
|
astra_core
|
|
Qt5::Core
|
|
Qt5::Network
|
|
Qt5::Quick) |