

2 changed files with 56 additions and 0 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
FROM mcr.microsoft.com/devcontainers/cpp:ubuntu-22.04 |
||||
|
||||
RUN apt-get update && apt-get install -y libsdl2-dev libsdl2-net-dev libpng-dev libglew-dev ninja-build |
||||
|
||||
# Install latest SDL2 |
||||
RUN wget https://www.libsdl.org/release/SDL2-2.26.1.tar.gz && \ |
||||
tar -xzf SDL2-2.26.1.tar.gz && \ |
||||
cd SDL2-2.26.1 && \ |
||||
./configure && \ |
||||
make && \ |
||||
make install && \ |
||||
cd .. && \ |
||||
rm -rf SDL2-2.26.1 && \ |
||||
rm SDL2-2.26.1.tar.gz && \ |
||||
cp -av /usr/local/lib/libSDL* /lib/x86_64-linux-gnu/ |
||||
|
||||
# Install latest SDL2_net |
||||
RUN wget https://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.2.0.tar.gz && \ |
||||
tar -xzf SDL2_net-2.2.0.tar.gz && \ |
||||
cd SDL2_net-2.2.0 && \ |
||||
./configure && \ |
||||
make && \ |
||||
make install && \ |
||||
cd .. && \ |
||||
rm -rf SDL2_net-2.2.0 && \ |
||||
rm SDL2_net-2.2.0.tar.gz && \ |
||||
cp -av /usr/local/lib/libSDL* /lib/x86_64-linux-gnu/ |
@ -0,0 +1,29 @@
@@ -0,0 +1,29 @@
|
||||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the |
||||
// README at: https://github.com/devcontainers/templates/tree/main/src/cpp |
||||
{ |
||||
"name": "SoH", |
||||
"build": { |
||||
"dockerfile": "Dockerfile" |
||||
}, |
||||
|
||||
// Features to add to the dev container. More info: https://containers.dev/features. |
||||
// "features": {}, |
||||
|
||||
// Configure tool-specific properties. |
||||
"customizations": { |
||||
// Configure properties specific to VS Code. |
||||
"vscode": { |
||||
"settings": {}, |
||||
"extensions": [] |
||||
} |
||||
} |
||||
|
||||
// Use 'forwardPorts' to make a list of ports inside the container available locally. |
||||
// "forwardPorts": [], |
||||
|
||||
// Use 'postCreateCommand' to run commands after the container is created. |
||||
// "postCreateCommand": "gcc -v", |
||||
|
||||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. |
||||
// "remoteUser": "root" |
||||
} |
Loading…
Reference in new issue