Skip to content

Commit 47b788d

Browse files
authored
Merge pull request #115 from jonwd7/develop
2.0dev7
2 parents 7261b0a + 6b5ddca commit 47b788d

File tree

289 files changed

+10158
-19482
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

289 files changed

+10158
-19482
lines changed

.editorconfig

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
root = true
2+
3+
[*.{h,cpp}]
4+
indent_size = 4
5+
indent_style = tab
6+
7+
[*.{pro,pri}]
8+
indent_size = 4
9+
indent_style = tab
10+
11+
[*.ui]
12+
indent_size = 1
13+
indent_style = space
14+
15+
[*.{frag,prog,vert}]
16+
indent_size = 4
17+
indent_style = tab

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ ui_*.h
3131

3232
# Qt Creator
3333
NifSkope.pro.user
34+
.qmake.stash
3435

3536
# Binaries
3637
NifSkope

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,6 @@
77
[submodule "lib/zlib"]
88
path = lib/zlib
99
url = https://github.com/madler/zlib.git
10+
[submodule "lib/gli"]
11+
path = lib/gli
12+
url = https://github.com/g-truc/gli.git

.travis.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ os:
77
addons:
88
apt:
99
sources:
10-
- sourceline: 'ppa:beineri/opt-qt551-trusty'
10+
- sourceline: 'ppa:beineri/opt-qt571-trusty'
1111
packages: [
1212
# static analysis
1313
clang-3.6,
1414
# qt5 requirement
15-
qt55-meta-minimal
15+
qt57-meta-minimal
1616
]
1717
matrix:
1818
fast_finish: true
@@ -25,8 +25,14 @@ matrix:
2525
- env: ANALYZE="scan-build-3.6 --use-cc clang-3.6 --use-c++ clang++-3.6 "
2626

2727
before_install:
28+
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
29+
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo apt-get update -qq; fi
2830
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then QT_ENV_SCRIPT=$(find /opt -name 'qt*-env.sh'); source $QT_ENV_SCRIPT; fi
29-
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; brew install [email protected]; export PATH="/usr/local/opt/[email protected]/bin:$PATH"; fi
31+
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; brew install [email protected]; export PATH="/usr/local/opt/[email protected]/bin:$PATH"; fi
32+
33+
install:
34+
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo apt-get install -qq g++-6; fi
35+
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90; fi
3036

3137
script:
3238
- qmake --version

0 commit comments

Comments
 (0)