mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-06 04:24:29 +00:00
15 lines
246 B
CMake
15 lines
246 B
CMake
project(feature_helpers)
|
|
|
|
set(SRC
|
|
feature_charge_sockets.cpp
|
|
feature_charge_sockets.hpp
|
|
)
|
|
|
|
omim_add_library(${PROJECT_NAME} ${SRC})
|
|
target_link_libraries(${PROJECT_NAME}
|
|
PRIVATE
|
|
base
|
|
)
|
|
|
|
omim_add_test_subdirectory(feature_helpers_tests)
|