Last active
February 8, 2025 17:06
-
-
Save DevStefIt/342b3b8b569f11e80ea7e2c10d13ac0d to your computer and use it in GitHub Desktop.
Revisions
-
DevStefIt revised this gist
Feb 8, 2025 . 2 changed files with 2 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ # Make sure you opened the x64 Native Tools Command Prompt for VS 2022 and then opened MSYS2 shell command echo Getting SDL... git clone https://github.com/libsdl-org/SDL.git -b SDL2 cd ../build This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ # Make sure you opened the x64 Native Tools Command Prompt for VS 2022 and then opened MSYS2 shell command echo Getting SDL... git clone https://github.com/libsdl-org/SDL.git -b SDL2 cd ../build -
DevStefIt revised this gist
Feb 2, 2025 . 2 changed files with 2 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,5 +4,4 @@ cd ../build mkdir SDL cd SDL cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="../../installed/SDL" -DSDL_STATIC=ON -DSDL_SHARED=OFF ../../sources/SDL cmake --build . --config Debug --target install This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -4,5 +4,4 @@ cd ../build mkdir SDL cd SDL cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="../../installed/SDL" -DSDL_STATIC=ON -DSDL_SHARED=OFF ../../sources/SDL cmake --build . --config Release --target install -
DevStefIt created this gist
Jan 16, 2025 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ echo Getting SDL... git clone https://github.com/libsdl-org/SDL.git -b SDL2 cd ../build mkdir SDL cd SDL cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="../../installed/SDL" -DSDL_STATIC=ON -DSDL_SHARED=OFF ../../sources/SDL cmake --build . --config Debug --target install cd ../../sources This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ echo Getting SDL... git clone https://github.com/libsdl-org/SDL.git -b SDL2 cd ../build mkdir SDL cd SDL cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_INSTALL_PREFIX="../../installed/SDL" -DSDL_STATIC=ON -DSDL_SHARED=OFF ../../sources/SDL cmake --build . --config Release --target install cd ../../sources