feat: add solver core skeleton

This commit is contained in:
NINI
2026-06-12 02:25:07 +09:00
parent 4e7fd1087d
commit cbd1a6c5d7
46 changed files with 1911 additions and 19 deletions
+8
View File
@@ -0,0 +1,8 @@
file(GLOB FESA_UNIT_TEST_SOURCES CONFIGURE_DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/*_test.cpp")
foreach(test_source IN LISTS FESA_UNIT_TEST_SOURCES)
get_filename_component(test_name "${test_source}" NAME_WE)
add_executable("${test_name}" "${test_source}")
target_link_libraries("${test_name}" PRIVATE fesa_core)
add_test(NAME "${test_name}" COMMAND "${test_name}")
endforeach()