https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 10a1660b266d5ce990a32ce7098825b2d898b899 authored by montoyav on 22 March 2021, 16:59:16 UTC
Change of nomenclature (in the documentation) of the physical constants in the Material Library
Tip revision: 10a1660
CMakeLists.txt
foreach(lib Git CMake Test)
    configure_file(
        ${CMAKE_CURRENT_SOURCE_DIR}/${lib}Info.cpp.in
        ${CMAKE_CURRENT_BINARY_DIR}/${lib}Info.cpp @ONLY
    )

    ogs_add_library(
        ${lib}InfoLib ${CMAKE_CURRENT_BINARY_DIR}/${lib}Info.cpp ${lib}Info.h
    )

    target_include_directories(${lib}InfoLib PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
endforeach(lib)
back to top