mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
d77f254328
In analogy to "QMLManager", add a "StatsManager" class, which manages the statistics module on mobile. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
13 lines
322 B
CMake
13 lines
322 B
CMake
# 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()
|