-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a824d80
commit 6f5bb5f
Showing
53 changed files
with
405 additions
and
352 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
build/* | ||
!build/debug.sh | ||
!build/debug_loop.sh | ||
snapshot/* | ||
/build/ | ||
!/build/debug.sh | ||
!/build/debug_loop.sh | ||
/snapshots/* | ||
/subprojects/* | ||
!/subprojects/packagefiles | ||
!/subprojects/*.wrap |
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
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,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
if ! make -j$(nproc); then | ||
if ! meson compile; then | ||
exit 1 | ||
fi | ||
|
||
|
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,31 @@ | ||
[binaries] | ||
c = '/usr/bin/i686-w64-mingw32-gcc' | ||
cpp = '/usr/bin/i686-w64-mingw32-g++' | ||
objc = '/usr/bin/i686-w64-mingw32-gcc' | ||
ar = '/usr/bin/i686-w64-mingw32-ar' | ||
strip = '/usr/bin/i686-w64-mingw32-strip' | ||
pkg-config = '/usr/bin/i686-w64-mingw32-pkg-config' | ||
windres = '/usr/bin/i686-w64-mingw32-windres' | ||
exe_wrapper = 'wine' | ||
ld = '/usr/bin/i686-w64-mingw32-ld' | ||
cmake = '/usr/bin/cmake' | ||
|
||
[properties] | ||
# Directory that contains 'bin', 'lib', etc | ||
root = '/usr/i686-w64-mingw32' | ||
# Directory that contains 'bin', 'lib', etc for the toolchain and system libraries | ||
sys_root = '/usr/i686-w64-mingw32/sys-root/mingw' | ||
|
||
[host_machine] | ||
system = 'windows' | ||
cpu_family = 'x86' | ||
cpu = 'i686' | ||
endian = 'little' | ||
|
||
[cmake] | ||
|
||
CMAKE_BUILD_WITH_INSTALL_RPATH = 'ON' | ||
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM = 'NEVER' | ||
CMAKE_FIND_ROOT_PATH_MODE_LIBRARY = 'ONLY' | ||
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE = 'ONLY' | ||
CMAKE_FIND_ROOT_PATH_MODE_PACKAGE = 'ONLY' |
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,30 @@ | ||
[binaries] | ||
c = '/usr/bin/x86_64-w64-mingw32-gcc' | ||
cpp = '/usr/bin/x86_64-w64-mingw32-g++' | ||
objc = '/usr/bin/x86_64-w64-mingw32-gcc' | ||
ar = '/usr/bin/x86_64-w64-mingw32-ar' | ||
strip = '/usr/bin/x86_64-w64-mingw32-strip' | ||
pkg-config = '/usr/bin/x86_64-w64-mingw32-pkg-config' | ||
windres = '/usr/bin/x86_64-w64-mingw32-windres' | ||
exe_wrapper = 'wine' | ||
cmake = '/usr/bin/cmake' | ||
|
||
[properties] | ||
# Directory that contains 'bin', 'lib', etc | ||
root = '/usr/x86_64-w64-mingw32' | ||
# Directory that contains 'bin', 'lib', etc for the toolchain and system libraries | ||
sys_root = '/usr/x86_64-w64-mingw32/sys-root/mingw' | ||
|
||
[host_machine] | ||
system = 'windows' | ||
cpu_family = 'x86_64' | ||
cpu = 'x86_64' | ||
endian = 'little' | ||
|
||
[cmake] | ||
|
||
CMAKE_BUILD_WITH_INSTALL_RPATH = 'ON' | ||
CMAKE_FIND_ROOT_PATH_MODE_PROGRAM = 'NEVER' | ||
CMAKE_FIND_ROOT_PATH_MODE_LIBRARY = 'ONLY' | ||
CMAKE_FIND_ROOT_PATH_MODE_INCLUDE = 'ONLY' | ||
CMAKE_FIND_ROOT_PATH_MODE_PACKAGE = 'ONLY' |
Submodule asprintf
deleted from
bae4b1
Submodule dragonnet
deleted from
7a9046
Submodule dragonstd
deleted from
8cb199
Submodule endian.h
deleted from
f24960
Submodule freetype
deleted from
d59c7c
Submodule getline
deleted from
31d539
Submodule glew-cmake
deleted from
7c2b75
Submodule glfw
deleted from
4cb368
Submodule linenoise
deleted from
2da54e
Submodule linmath.h
deleted from
053875
Submodule perlin
deleted from
8a9301
Submodule protogen
deleted from
f50626
Submodule sqlite3-cmake
deleted from
b23390
Submodule stb
deleted from
af1a5b
Submodule stpcpy
deleted from
969029
Submodule zlib
deleted from
4b4fbf
Oops, something went wrong.