-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # DreeRally.vcxproj # DreeRally.vcxproj.filters # config.c # config.h # dr.c # i18n/i18n.c # i18n/i18n.h # lang/langEs.txt # ui/licenseScreen.c # util/hash.c # util/hash.h
- Loading branch information
Showing
210 changed files
with
44,096 additions
and
17,217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
language: c | ||
compiler: gcc | ||
dist: bionic | ||
|
||
install: | ||
- sudo dpkg --add-architecture i386 | ||
- sudo apt-get update | ||
- sudo apt-get install libc6-i386 | ||
- sudo apt-get install gcc-7-multilib gcc-multilib | ||
- sudo apt-get install g++-7-multilib g++-multilib | ||
- sudo apt-get install xorg-dev | ||
- sudo apt-get install libsdl1.2-dev:i386 | ||
- sudo apt-get install libsdl1.2debian:i386 | ||
- sudo apt-get install freeglut3-dev:i386 | ||
- sudo apt-get install freeglut3:i386 | ||
- sudo apt-get install libglu1-mesa:i386 | ||
- sudo apt-get install libglu1-mesa-dev | ||
- sudo apt-get install mesa-utils | ||
- sudo apt-get install mesa-common-dev | ||
- sudo apt-get install libx11-dev libgl1-mesa-glx | ||
- sudo apt-get install build-essential libgl1-mesa-dev | ||
- sudo apt-get install libgl1-mesa-glx:i386 | ||
- wget https://zdoom.org/files/fmod/fmodapi375linux.tar.gz | ||
- tar -xf fmodapi375linux.tar.gz | ||
- sudo cp fmodapi375linux/api/libfmod-3.75.so /usr/lib | ||
- ls /usr/lib/i386-linux-gnu/ | ||
|
||
services: | ||
- xvfb | ||
|
||
|
||
script: | ||
- make -f Makefile.linux | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"configurations": [ | ||
{ | ||
"name": "Linux", | ||
"includePath": [ | ||
"${workspaceFolder}/**" | ||
], | ||
"defines": [], | ||
"compilerPath": "/usr/bin/gcc", | ||
"cStandard": "c11", | ||
"cppStandard": "c++17", | ||
"intelliSenseMode": "gcc-x86", | ||
"compilerArgs": [ | ||
"-m32 ", | ||
"-nostdinc++" | ||
] | ||
} | ||
], | ||
"version": 4 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
"name": "(gdb) Launch", | ||
"type": "cppdbg", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/Debug/dreerally", | ||
"args": ["-D_WINDOWS_TYPES1 -D__WIN32__2 -DPORTABILITY -D_NO_MINIFMOD "], | ||
"stopAtEntry": false, | ||
"cwd": "${workspaceFolder}/Debug", | ||
"environment": [], | ||
"externalConsole": false, | ||
"MIMode": "gdb", | ||
"setupCommands": [ | ||
{ | ||
"description": "Enable pretty-printing for gdb", | ||
"text": "-enable-pretty-printing", | ||
"ignoreFailures": true | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"files.associations": { | ||
"anim.h": "c" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"type": "shell", | ||
"command": "make -f Makefile.linux", | ||
"args": [ | ||
// Ask msbuild to generate full paths for file names. | ||
"/property:GenerateFullPaths=true", | ||
"/t:build", | ||
// Do not generate summary otherwise it leads to duplicate errors in Problems panel | ||
"/consoleloggerparameters:NoSummary" | ||
], | ||
"group": "build", | ||
"presentation": { | ||
// Reveal the output only if unrecognized errors occur. | ||
"reveal": "silent" | ||
}, | ||
// Use the standard MS compiler pattern to detect errors, warnings and infos | ||
"problemMatcher": "$msCompile" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.