Files
comaps/libs/platform/location_service/CMakeLists.txt
Alexander Borsuk 76ffc99abd New cpp folder structure
Signed-off-by: Alexander Borsuk <me@alex.bio>
2025-08-14 20:52:04 +07:00

29 lines
1010 B
CMake

project(location_service)
if (NOT SKIP_QT_GUI AND PLATFORM_DESKTOP AND PLATFORM_LINUX)
message("Building with Qt Positioning")
find_package(Qt6 REQUIRED COMPONENTS Positioning)
set(QT_LOCATION_SERVICE true)
elseif(NOT SKIP_QT_GUI AND PLATFORM_DESKTOP AND PLATFORM_MAC)
set(APPLE_LOCATION_SERVICE true)
endif()
set(SRC
location_service.cpp
location_service.hpp
$<$<BOOL:${APPLE_LOCATION_SERVICE}>:apple_location_service.mm>
$<$<BOOL:${QT_LOCATION_SERVICE}>:qt_location_service.hpp>
$<$<BOOL:${QT_LOCATION_SERVICE}>:qt_location_service.cpp>
)
omim_add_library(${PROJECT_NAME} ${SRC})
if (QT_LOCATION_SERVICE)
target_compile_definitions(${PROJECT_NAME} PRIVATE "QT_LOCATION_SERVICE")
target_link_libraries(${PROJECT_NAME} Qt6::Positioning)
set_target_properties(${PROJECT_NAME} PROPERTIES AUTOMOC ON)
elseif(APPLE_LOCATION_SERVICE)
target_compile_definitions(${PROJECT_NAME} PRIVATE "APPLE_LOCATION_SERVICE")
target_link_libraries(${PROJECT_NAME} -framework\ CoreLocation)
endif()