rewrite to use of the new implementation of mount config

(asibfm700_config.h: Asibfm700MountConfiguration class)
This commit is contained in:
2026-06-02 12:07:23 +03:00
parent a984f77351
commit 64db29704d
5 changed files with 78 additions and 27 deletions

View File

@@ -11,7 +11,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# pass to mcc-library
option(USE_BSPLINE_PCM "Use of FITPACK bivariate splines for PCM" ON)
find_package(cxxopts REQUIRED)
# find_package(cxxopts REQUIRED)
#set(EXAMPLES OFF CACHE BOOL "" FORCE)
# set(CMAKE_BUILD_TYPE "Release")
@@ -82,14 +82,23 @@ set(CMAKE_BUILD_TYPE "Debug")
include(FetchContent)
FetchContent_Declare(
cxxopts
GIT_REPOSITORY https://github.com/jarro2783/cxxopts.git
GIT_SHALLOW 1
GIT_PROGRESS 1
CMAKE_ARGS
-DCXXOPTS_USE_UNICODE=0
)
FetchContent_MakeAvailable(cxxopts)
set(EXAMPLES OFF CACHE BOOL "" FORCE)
FetchContent_Declare(
servo_lib
GIT_REPOSITORY https://timur@git.sao.ru/timur/LibSidServo.git
GIT_SHALLOW 1
GIT_PROGRESS 1
SOURCE_DIR
${CMAKE_BINARY_DIR}/LibSidServo
SOURCE_DIR ${CMAKE_BINARY_DIR}/LibSidServo
)
FetchContent_MakeAvailable(servo_lib)
@@ -101,8 +110,7 @@ FetchContent_Declare(
# GIT_REPOSITORY ssh://git@95.140.147.151:/home/git/mcc.git
GIT_SHALLOW 1
GIT_PROGRESS 1
SOURCE_DIR
${CMAKE_BINARY_DIR}/mcc
SOURCE_DIR ${CMAKE_BINARY_DIR}/mcc
# OVERRIDE_FIND_PACKAGE
)
set(BUILD_TESTS OFF)