mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 04:53:36 +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)
|