-
Notifications
You must be signed in to change notification settings - Fork 572
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GitHub CodeSpaces development environment.
- Loading branch information
1 parent
faaf938
commit 66625a4
Showing
2 changed files
with
22 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM ubuntu:latest | ||
LABEL org.opencontainers.image.authors="CandiceJoy <[email protected]>" | ||
LABEL author="CandiceJoy" | ||
LABEL description="GZDoom compilation image (Designed for GZDoom 4.11pre)" | ||
LABEL verion="4.11pre" | ||
|
||
# Update these as needed | ||
ENV GZ_ZMUSIC_URL="https://github.com/coelckers/ZMusic.git" | ||
ENV GZ_ZMUSIC_COMMIT="75d2994b4b1fd6891b20819375075a2976ee34de" | ||
ENV GZ_PACKAGES="build-essential git cmake libsdl2-dev libvpx-dev" | ||
|
||
# Update package lists and install package-based build dependencies | ||
RUN apt-get update; apt-get install -y $GZ_PACKAGES | ||
|
||
# Install ZMusic | ||
RUN git clone $GZ_ZMUSIC_URL; git reset --hard $GZ_ZMUSIC_COMMIT; cd ZMusic; cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr; make; make install |
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,6 @@ | ||
{ | ||
"build":{ "dockerfile": "GZDoom.dockerfile" }, | ||
"name": "GZDoom", | ||
"features": { | ||
} | ||
} |