subsurface/mobile-widgets/CMakeLists.txt
Dirk Hohndel 52f156ee47 WIP-dont-use
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2024-08-30 21:19:27 -07:00

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()