This commit is contained in:
Timur A. Fatkhullin
2025-10-01 06:26:50 +03:00
parent 0b7261a431
commit 3d769d79eb
8 changed files with 505 additions and 26 deletions

View File

@@ -40,4 +40,14 @@ set(ASIBFM700_LIB asibfm700mount)
add_library(${ASIBFM700_LIB} STATIC ${ASIBFM700_LIB_SRC}
asibfm700_mount.h asibfm700_mount.cpp
asibfm700_configfile.h)
target_link_libraries(${ASIBFM700_LIB} PRIVATE mcc)
target_link_libraries(${ASIBFM700_LIB} PRIVATE mcc spdlog)
option(WITH_TESTS "Build tests" ON)
if (WITH_TESTS)
set(CFG_TEST_APP cfg_test)
add_executable(${CFG_TEST_APP} tests/cfg_test.cpp)
target_link_libraries(${CFG_TEST_APP} PRIVATE mcc)
enable_testing()
endif()