g++-12 needs quite some memory and time to compile it. We now use several Builtin*.cpp for the imlementations for different starting letters of eclipse keywords to use less resources for compiling.
41 lines
2.0 KiB
CMake
41 lines
2.0 KiB
CMake
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/ParserInit.cpp
|
|
${BASE_DIR}/ParserInit.cpp)
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/TestKeywords.cpp
|
|
${BASE_DIR}/TestKeywords.cpp)
|
|
|
|
if (EXISTS ${BASE_DIR}/python/cxx)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/builtin_pybind11.cpp
|
|
${BASE_DIR}/python/cxx/builtin_pybind11.cpp)
|
|
endif()
|
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/include/opm/input/eclipse/Parser/ParserKeywords/Builtin.hpp
|
|
${BASE_DIR}/include/opm/input/eclipse/Parser/ParserKeywords/Builtin.hpp)
|
|
|
|
|
|
file(GLOB HDRS ${BASE_DIR}/tmp_gen/include/opm/input/eclipse/Parser/ParserKeywords/*.hpp)
|
|
|
|
foreach(HDR ${HDRS})
|
|
file(RELATIVE_PATH hdr ${BASE_DIR}/tmp_gen/include/opm/input/eclipse/Parser/ParserKeywords ${HDR})
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${HDR}
|
|
${BASE_DIR}/include/opm/input/eclipse/Parser/ParserKeywords/${hdr})
|
|
|
|
endforeach()
|
|
|
|
foreach (name A B C D E F G H I J K L M N O P Q R S T U V W X Y Z)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/ParserKeywords/${name}.cpp
|
|
${BASE_DIR}/ParserKeywords/${name}.cpp)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/ParserKeywords/ParserInit${name}.cpp
|
|
${BASE_DIR}/ParserKeywords/ParserInit${name}.cpp)
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
${BASE_DIR}/tmp_gen/ParserKeywords/Builtin${name}.cpp
|
|
${BASE_DIR}/ParserKeywords/Builtin${name}.cpp)
|
|
endforeach()
|