https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: b39d1eaa7b5381fe3c5cf73cd4b72517e702dc03 authored by Jörg Buchwald on 09 December 2020, 18:48:47 UTC
correcting latex formulas
Tip revision: b39d1ea
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>
)
back to top