https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 27c78d3c119902fa6c970756455765520a3a2192 authored by Thomas Fischer on 11 December 2020, 07:10:13 UTC
[GL] Remove failing test for MinimalBoundingSphere.
Tip revision: 27c78d3
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