~cypheon/elfelli

1ec73379f1d2c03e38a84b382194b609f3fc28ab — Johann Rudloff 4 years ago ad485aa
Clearer naming for build system switching.
2 files changed, 3 insertions(+), 3 deletions(-)

M .travis.yml
M ci/build.sh
M .travis.yml => .travis.yml +2 -2
@@ 6,9 6,9 @@ os:

env:
  # (default) build using CMake
  - USE_SCONS=
  - BUILDSYSTEM=cmake
  # (deprecated) build using SCons
  - USE_SCONS=yes
  - BUILDSYSTEM=scons

addons:
  apt:

M ci/build.sh => ci/build.sh +1 -1
@@ 2,7 2,7 @@

set -e

if [ -n "$USE_SCONS" ]; then
if [ "$BUILDSYSTEM" = "scons" ]; then
  scons -j3
else
  cmake . && make -j3