Skip to content
This repository has been archived by the owner on Mar 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' into ProvinceMapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Idhrendur committed Jan 25, 2018
2 parents 0bd9773 + 70f1f1d commit f0d70e7
Show file tree
Hide file tree
Showing 31,576 changed files with 602,195 additions and 80,751 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
24 changes: 24 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Set the default behavior, in case people don't have core.autocrlf set.
* text=auto

# Explicitly declare text files you want to always be normalized and converted
# to native line endings on checkout.
*.c text
*.h text
*.txt text
*.xml text

# Declare files that will always have CRLF line endings on checkout.
*.sln text eol=crlf
*.bat text eol=crlf
*.vcxproj* text eol=crlf

# Declare files that will always have LF line endings on checkout.
*.sh text eol=lf
*.md text eol=lf
*.yml text eol=lf

# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.tga binary
31 changes: 27 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
CK2ToEU3/build/
Release/
ReleaseIntermediate/
bin/
obj/
EU3ToV2
*.sdf
Release-Linux/
Debug/
DebugIntermediate/
testResults
*testResults*
V2ToHoI3.zip
*.opensdf
*.opendb
*.sdf
*.VC.db
/EU4toV2/.vs/EU4ToV2/v14/.suo
/Vic2ToHoI4/.vs/Supercharger/Vic2ToHoI4/codemap.dat
/Vic2ToHoI4/.vs/Supercharger/Vic2ToHoI4/global_history.dat
/Vic2ToHoI4/.vs/Supercharger/Vic2ToHoI4/workbench.dat
/Vic2ToHoI4/.vs/Vic2ToHoI4/v14/.suo
/Vic2ToHoI4/.vs/
/EU4toV2/.vs/Supercharger/EU4ToV2/codemap.dat
/EU4toV2/.vs/Supercharger/EU4ToV2/global_history.dat
/EU4toV2/.vs/Supercharger/EU4ToV2/workbench.dat
/EU4toV2/.vs/
/EU4toV2/build
/Vic2ToHoI4/build
/EU4toV2/EU4toV2Converter.pdb
/EU4toV2/log.txt
/EU4toV2/Woxolo.eu4
/EU4toV2/EU4toV2Converter.iobj
37 changes: 37 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
dist: trusty
sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- g++-7
- cmake
- cmake-data
- libboost1.55-all-dev
before_install:
- mkdir $HOME/usr
- export PATH="$HOME/usr/bin:$PATH"
- wget https://cmake.org/files/v3.10/cmake-3.10.0-rc1-Linux-x86_64.sh
- chmod +x cmake-3.10.0-rc1-Linux-x86_64.sh
- ./cmake-3.10.0-rc1-Linux-x86_64.sh --prefix=$HOME/usr --exclude-subdir --skip-license
script:
# Export CC and CXX to tell cmake which compiler to use
- export CC=/usr/bin/gcc-7
- export CXX=/usr/bin/g++-7
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
# Run your build commands next
- cd Vic2ToHoI4
- cmake -H. -Bbuild
- ls
- ls build
- cmake --build ./build
- cd ../EU4toV2
- cmake -H. -Bbuild
- cmake --build ./build -- -j3
46 changes: 0 additions & 46 deletions CK2ToEU3/CK2ToEU3-VS2013.sln

This file was deleted.

173 changes: 0 additions & 173 deletions CK2ToEU3/CK2ToEU3-VS2013.vcxproj

This file was deleted.

42 changes: 0 additions & 42 deletions CK2ToEU3/CK2ToEU3.sln

This file was deleted.

Loading

0 comments on commit f0d70e7

Please sign in to comment.