You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
220 B

  1. #!/bin/bash
  2. echo "Building Storm..."
  3. git clone https://github.com/moves-rwth/storm.git
  4. cd storm
  5. mkdir build
  6. cd build
  7. cmake .. -DCMAKE_BUILD_TYPE=Release
  8. make storm storm-dft storm-pars -j1
  9. echo "Building Storm finished"