Changeset 08c851ce in mainline


Ignore:
Timestamp:
2019-08-18T15:44:58Z (5 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6c2fac18
Parents:
a42be38
Message:

Add explicit check and helpful error message for presence of meson and ninja

File:
1 edited

Legend:

Unmodified
Added
Removed
  • configure.sh

    ra42be38 r08c851ce  
    8585fi
    8686
     87if ! which meson; then
     88        echo "Your system does not have Meson installed."
     89        echo 'Please use `pip3 install meson`'
     90fi
     91
     92if ! which ninja; then
     93        echo "Your system does not have ninja installed."
     94        echo 'Please use `pip3 install ninja`'
     95fi
     96
    8797# Link tools directory for convenience.
    8898ln -s "${SOURCE_DIR}/tools" tools
Note: See TracChangeset for help on using the changeset viewer.