Skip to content

Commit

Permalink
#Hellgrave v5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexv45 committed Apr 13, 2023
0 parents commit fe88645
Show file tree
Hide file tree
Showing 4,762 changed files with 578,839 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
58 changes: 58 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
---
image: Visual Studio 2019

shallow_clone: true

# set clone depth
clone_depth: 1

# environment:
# APPVEYOR_SAVE_CACHE_ON_ERROR: true

platform:
- x64

configuration:
- Release

matrix:
fast_finish: true

only_commits:
files:
- src/
- vc14/
- .appveyor.yml
- cmake/
- CMakeLists.txt

install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
- cd C:\Tools\vcpkg
- git pull
- .\bootstrap-vcpkg.bat
- .\vcpkg integrate install
- cd %APPVEYOR_BUILD_FOLDER%

before_build:
- cmd: |-
if not exist build mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=C:\Tools\vcpkg\scripts\buildsystems\vcpkg.cmake ..
cmake --build . --config Release
build:
project: C:\projects\otservbr-global\build\otbr.sln
verbosity: minimal
parallel: true

after_build:
- cd %APPVEYOR_BUILD_FOLDER%\build\bin
- 7z a -tzip otservbr-global.zip Release\

cache:
- C:\projects\otservbr-global\build\vcpkg_installed\
- C:\Users\appveyor\AppData\Local\vcpkg\archives

artifacts:
- path: \build\bin\otservbr-global.zip
40 changes: 40 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
root = true

# General configuration
[*]
charset = utf-8
end_of_line = lf
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true

# Lua, XML
[*.{lua,xml}]
indent_style = tab
indent_size = 2

# SQL
[**.{sql}]
indent_style = space
indent_size = 2

#cmake
[CMakeLists.txt]
indent_style = tab
indent_size = 2

# Google Style
[*.{cpp,hpp,h}]
indent_style = tab
indent_size = 2
indent_brace_style = K&R
spaces_around_brackets = none

[*.{yml,yaml,json}]
indent_style = space
indent_size = 2

# CMake
[CMakeLists.txt]
indent_style = space
indent_size = 2
Loading

0 comments on commit fe88645

Please sign in to comment.