blob: 4ecd58074b06aa8b8efedcfc55a0eb2cc76d2811 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# backend functionality shared between Desktop (UI) and Mobile (QML)
set(BACKEND_SRCS
divesummary.cpp
exportfuncs.cpp
exportfuncs.h
plannershared.cpp
plannershared.h
)
add_library(subsurface_backend_shared STATIC ${BACKEND_SRCS})
target_link_libraries(subsurface_backend_shared ${QT_LIBRARIES})
|