Revision 92f61be1ed376574237b57d7850aa5dcc554fe24 authored by Dmitry Yu. Naumov on 29 June 2021, 13:17:59 UTC, committed by Dmitry Yu. Naumov on 29 June 2021, 13:17:59 UTC
Use the existing class to compute the rotation matrix in LIE

See merge request ogs/ogs!3672
2 parent s 98aeeb3 + 1f4191c
Raw File
CMakeLists.txt
get_source_files(SOURCES)
append_source_files(SOURCES IO)
append_source_files(SOURCES IO/XmlIO)
if(OGS_BUILD_GUI)
    append_source_files(SOURCES IO/XmlIO/Qt)
endif()

# Create the library
ogs_add_library(BaseLib ${SOURCES})

target_link_libraries(
    BaseLib
    PUBLIC Boost::boost
           spdlog::spdlog
           std::filesystem
           $<$<BOOL:${MSVC}>:WinMM> # needed for timeGetTime
           $<$<BOOL:${OGS_BUILD_GUI}>:Qt5::Xml>
           $<$<BOOL:${OGS_BUILD_GUI}>:Qt5::XmlPatterns>
           $<$<BOOL:${OGS_USE_PETSC}>:petsc>
    PRIVATE xmlpatch
)

target_compile_definitions(
    BaseLib PUBLIC $<$<BOOL:${OGS_FATAL_ABORT}>:OGS_FATAL_ABORT>
)
back to top