Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Layout restructure, add premake5 and configure CI services #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
400 changes: 400 additions & 0 deletions .gitignore

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
language: generic

before_install:
- sudo apt-get install -y lib32z1-dev build-essential automake libtool gcc-multilib g++-multilib
- wget http://launchpadlibrarian.net/121445924/libc6_2.16-0ubuntu3_amd64.deb
- sudo dpkg -i libc6_2.16-0ubuntu3_amd64.deb

before_script:
- chmod +x ./utils/premake5
- ./utils/premake5 gmake
- cd build

matrix:
include:
- env: CXX=g++-5 CC=gcc-5 config=release_x32
addons:
apt:
packages:
- g++-5
- g++-5-multilib
- gcc-5-multilib
sources: &sources
- ubuntu-toolchain-r-test
- env: CXX=g++-5 CC=gcc-5 config=release_x64
addons:
apt:
packages:
- g++-5
- g++-5-multilib
- gcc-5-multilib
sources: &sources
- ubuntu-toolchain-r-test
- env: CXX=clang++-3.8 CC=clang-3.8 config=release_x32
addons:
apt:
packages:
- clang-3.8
sources: &sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
- env: CXX=clang++-3.8 CC=clang-3.8 config=release_x64
addons:
apt:
packages:
- clang-3.8
sources: &sources
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8

script: make all -j 4 --environment-overrides
3 changes: 0 additions & 3 deletions Texturizer/AppVersion.h

This file was deleted.

3 changes: 0 additions & 3 deletions Texturizer/AppVersion.h.in

This file was deleted.

39 changes: 0 additions & 39 deletions Texturizer/CMakeLists.txt

This file was deleted.

5 changes: 0 additions & 5 deletions Texturizer/TextureWriter/CMakeLists.txt

This file was deleted.

33 changes: 0 additions & 33 deletions Texturizer/TextureWriter/cstdint.h

This file was deleted.

Loading