1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-05-15 05:42:25 -04:00
sdrangel/modemmeshtastic/CMakeLists.txt
2026-03-28 05:04:54 +01:00

24 lines
373 B
CMake

project (modemmeshtastic)
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})