0

What's meant in the line (https://scipopt.org/doc/html/CMAKE.php)

cmake .. [-DSOPLEX_DIR=/path/to/soplex]

What to put as [-DSOPLEX_DIR=/path/to/soplex]?

Mureinik
  • 297,002
  • 52
  • 306
  • 350
Sam Weisenthal
  • 2,791
  • 9
  • 28
  • 66

1 Answers1

0

Square brackets denote optional arguments. In other words, you could use the argument -DSOPLEX_DIR=/path/to/soplex, or you could omit it.

Mureinik
  • 297,002
  • 52
  • 306
  • 350