feat: add analysis state and base
This commit is contained in:
@@ -8,6 +8,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
|
||||
|
||||
add_library(fesa_core STATIC
|
||||
src/boundary/SinglePointConstraint.cpp
|
||||
src/core/AnalysisState.cpp
|
||||
src/core/Domain.cpp
|
||||
src/element/Mitc4Element.cpp
|
||||
src/io/Hdf5ResultWriter.cpp
|
||||
@@ -61,3 +62,13 @@ target_link_libraries(fesa_io_tests PRIVATE fesa_core)
|
||||
|
||||
add_test(NAME io.hdf5-result-writer COMMAND fesa_io_tests)
|
||||
set_tests_properties(io.hdf5-result-writer PROPERTIES LABELS "io;hdf5")
|
||||
|
||||
add_executable(fesa_analysis_tests
|
||||
tests/analysis/analysis_base_test.cpp
|
||||
tests/analysis/analysis_test_main.cpp
|
||||
tests/core/analysis_state_test.cpp
|
||||
)
|
||||
target_link_libraries(fesa_analysis_tests PRIVATE fesa_core)
|
||||
|
||||
add_test(NAME analysis.base COMMAND fesa_analysis_tests)
|
||||
set_tests_properties(analysis.base PROPERTIES LABELS "analysis;core")
|
||||
|
||||
Reference in New Issue
Block a user