Have renamed the OpmLoadDeck test program to the working name opmi - Opm Inspector. Currently the opmi executable will only load a deck and create a EclipseState instance, but the plan is to extend this executable to be a general Eclipse deck inspector, e.g. opmi --wells CASE.DATA Could the list the wells and so on.
5 lines
109 B
CMake
5 lines
109 B
CMake
add_executable(opmi opmi.cpp)
|
|
target_link_libraries(opmi opmparser)
|
|
install(TARGETS opmi DESTINATION "bin")
|
|
|