-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from wojciechmadry/sfml_src
Sfml as submodule
- Loading branch information
Showing
11 changed files
with
68 additions
and
71 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,6 @@ | ||
[submodule "src/BabelLib"] | ||
path = src/BabelLib | ||
url = https://github.com/wojciechmadry/BabelLib.git | ||
[submodule "SFML"] | ||
path = SFML | ||
url = https://github.com/SFML/SFML.git |
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
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,37 @@ | ||
FROM ubuntu:22.04 | ||
|
||
WORKDIR /ws | ||
|
||
RUN apt update \ | ||
&& apt upgrade -y\ | ||
&& apt install -y\ | ||
cmake \ | ||
ninja-build \ | ||
gcc \ | ||
git \ | ||
libudev-dev \ | ||
libopenal-dev \ | ||
libvorbis-dev \ | ||
libflac-dev \ | ||
libx11-dev \ | ||
libxcursor-dev \ | ||
libxrandr-dev \ | ||
libfreetype-dev \ | ||
libopengl-dev \ | ||
libglx-dev \ | ||
libgl1-mesa-dev | ||
|
||
ENV CC=gcc | ||
ENV CXX=g++ | ||
ENV BRANCH=master | ||
|
||
RUN git clone https://github.com/wojciechmadry/Kulki.git \ | ||
&& cd Kulki \ | ||
&& git checkout ${BRANCH} \ | ||
&& git submodule init \ | ||
&& git submodule update \ | ||
&& mkdir -p build \ | ||
&& cd build \ | ||
&& cmake -GNinja ../ \ | ||
&& ninja | ||
|
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