1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-03-31 12:15:36 -04:00
sdrangel/modemmeshtastic/CMakeLists.txt

24 lines
374 B
CMake

project (modemmeshtatstic)
set(modemmeshtastic_SOURCES
meshtasticpacket.cpp
)
set(modemmeshtastic_HEADERS
meshtasticpacket.h
)
include_directories(
${CMAKE_SOURCE_DIR}/exports
)
add_library(modemmeshtastic
${modemmeshtastic_SOURCES}
)
target_link_libraries(modemmeshtastic
Qt::Core
)
install(TARGETS modemmeshtastic DESTINATION ${INSTALL_LIB_DIR})