blob: b02929bcbdf26c2aea76efb8de20d657902b1573 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# mobile backend functions
set(SUBSURFACE_MOBILE_SRCS
qmlinterface.cpp
qmlmanager.cpp
statsmanager.cpp
themeinterface.cpp
)
if (SUBSURFACE_TARGET_EXECUTABLE MATCHES "MobileExecutable")
add_library(subsurface_mobile STATIC ${SUBSURFACE_MOBILE_SRCS})
target_link_libraries(subsurface_mobile ${QT_LIBRARIES})
endif()
|