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