swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 9e5d378c79d0cad160d25e9ed3fa1bfad63aacb1 authored by Dmitry Yu. Naumov on 11 March 2021, 15:02:46 UTC
[T/CT] Use molality in Wetland_1d.
Tip revision: 9e5d378
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>
)

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