refactor: extract abaqus input parser

This commit is contained in:
NINI
2026-05-05 01:31:02 +09:00
parent 34e7d1638f
commit 339bf1cbb9
8 changed files with 651 additions and 448 deletions
+7
View File
@@ -24,18 +24,25 @@ target_link_libraries(fesa_core_module_tests PRIVATE fesa_core)
add_executable(fesa_math_module_tests tests/test_math_module_includes.cpp)
target_link_libraries(fesa_math_module_tests PRIVATE fesa_core)
add_executable(fesa_io_module_tests tests/test_io_module_includes.cpp)
target_link_libraries(fesa_io_module_tests PRIVATE fesa_core)
target_compile_definitions(fesa_io_module_tests PRIVATE FESA_SOURCE_DIR="${CMAKE_CURRENT_SOURCE_DIR}")
if(MSVC)
target_compile_options(fesa_core PRIVATE /W4 /permissive-)
target_compile_options(fesa_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_core_module_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_math_module_tests PRIVATE /W4 /permissive-)
target_compile_options(fesa_io_module_tests PRIVATE /W4 /permissive-)
else()
target_compile_options(fesa_core PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_core_module_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_math_module_tests PRIVATE -Wall -Wextra -Wpedantic)
target_compile_options(fesa_io_module_tests PRIVATE -Wall -Wextra -Wpedantic)
endif()
add_test(NAME fesa_tests COMMAND fesa_tests)
add_test(NAME fesa_core_module_tests COMMAND fesa_core_module_tests)
add_test(NAME fesa_math_module_tests COMMAND fesa_math_module_tests)
add_test(NAME fesa_io_module_tests COMMAND fesa_io_module_tests)