mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
13 lines
343 B
CMake
13 lines
343 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()
|