Skip to content

Commit

Permalink
Merge pull request #115 from jonwd7/develop
Browse files Browse the repository at this point in the history
2.0dev7
  • Loading branch information
hexabits authored Dec 18, 2017
2 parents 7261b0a + 6b5ddca commit 47b788d
Show file tree
Hide file tree
Showing 289 changed files with 10,158 additions and 19,482 deletions.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
root = true

[*.{h,cpp}]
indent_size = 4
indent_style = tab

[*.{pro,pri}]
indent_size = 4
indent_style = tab

[*.ui]
indent_size = 1
indent_style = space

[*.{frag,prog,vert}]
indent_size = 4
indent_style = tab
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ ui_*.h

# Qt Creator
NifSkope.pro.user
.qmake.stash

# Binaries
NifSkope
Expand Down
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "lib/zlib"]
path = lib/zlib
url = https://github.com/madler/zlib.git
[submodule "lib/gli"]
path = lib/gli
url = https://github.com/g-truc/gli.git
12 changes: 9 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ os:
addons:
apt:
sources:
- sourceline: 'ppa:beineri/opt-qt551-trusty'
- sourceline: 'ppa:beineri/opt-qt571-trusty'
packages: [
# static analysis
clang-3.6,
# qt5 requirement
qt55-meta-minimal
qt57-meta-minimal
]
matrix:
fast_finish: true
Expand All @@ -25,8 +25,14 @@ matrix:
- env: ANALYZE="scan-build-3.6 --use-cc clang-3.6 --use-c++ clang++-3.6 "

before_install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo apt-get update -qq; fi
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then QT_ENV_SCRIPT=$(find /opt -name 'qt*-env.sh'); source $QT_ENV_SCRIPT; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; brew install [email protected]; export PATH="/usr/local/opt/[email protected]/bin:$PATH"; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; brew install [email protected]; export PATH="/usr/local/opt/[email protected]/bin:$PATH"; fi

install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo apt-get install -qq g++-6; fi
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90; fi

script:
- qmake --version
Expand Down
Loading

0 comments on commit 47b788d

Please sign in to comment.