Remove files.

This commit is contained in:
Erik Svedäng 2017-06-26 11:55:00 +02:00
parent 5d4139c38d
commit 4c89eddfc0
2 changed files with 0 additions and 55 deletions

View File

@ -1,27 +0,0 @@
Language: Cpp
AllowShortIfStatementsOnASingleLine: true
AlignOperands: true
AlignTrailingComments: false
ColumnLimit: 0
IndentCaseLabels: false
IndentWidth: 2
SpaceBeforeParens: false
UseTab: Never
SortIncludes: false
# Configure each individual brace in BraceWrapping
BreakBeforeBraces: 'Custom'
# Control of individual brace wrapping cases
BraceWrapping: {
AfterControlStatement: 'false'
AfterEnum : 'false'
AfterFunction : 'false'
AfterNamespace : 'false'
AfterStruct : 'false'
AfterUnion : 'false'
BeforeCatch : 'false'
BeforeElse : 'true'
IndentBraces : 'false'
}

View File

@ -1,28 +0,0 @@
os:
- linux
language: c
compiler:
- gcc
- clang
sudo: required
before_install:
# libglfw3-dev is not available in travis ubuntu
# see https://github.com/filipwasil/fillwave/issues/58
# get via ppa
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo "deb http://ppa.launchpad.net/keithw/glfw3/ubuntu trusty main" | sudo tee -a /etc/apt/sources.list.d/fillwave_ext.list; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; fi
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install build-essential cmake pkg-config libffi-dev rlwrap; fi
# unauthenticated package - install anyway
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y --force-yes libglfw3-dev; fi
script:
- cmake .
- make