...
Code Block | ||||
---|---|---|---|---|
| ||||
cd $WK
mkdir build; cd build;
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/apps/ecflow -DCMAKE_BUILD_TYPE=Release
# If you do not want build the GUI, use
# cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local/apps/ecflow -DCMAKE_BUILD_TYPE=Release -DENABLE_GUI=OFF
make
make install |
To use the ecFlow Python Api , you need to add/change PYTHONPATH .
...