Finally created an installer so people can try the game.
This commit is contained in:
parent
5c815cf755
commit
28b900e4ff
4 changed files with 11 additions and 1 deletions
3
Makefile
3
Makefile
|
@ -42,3 +42,6 @@ clean:
|
|||
|
||||
debug_test: build
|
||||
gdb --nx -x .gdbinit --ex run --args builddir/runtests.exe -e
|
||||
|
||||
win_installer:
|
||||
powershell 'start "C:\Program Files (x86)\solicus\InstallForge\bin\ifbuilderenvx86.exe" win_installer.ifp'
|
||||
|
|
2
main.cpp
2
main.cpp
|
@ -6,7 +6,7 @@
|
|||
int main(int argc, char* argv[]) {
|
||||
textures::init();
|
||||
sound::init();
|
||||
sound::mute(true);
|
||||
sound::mute(false);
|
||||
gui::FSM main;
|
||||
main.event(gui::Event::STARTED);
|
||||
Autowalker walker(main);
|
||||
|
|
|
@ -5,6 +5,13 @@ project('raycaster', 'cpp',
|
|||
'cpp_args=-D_GLIBCXX_DEBUG=1 -D_GLIBCXX_DEBUG_PEDANTIC=1',
|
||||
])
|
||||
|
||||
add_global_link_arguments(
|
||||
'-static-libgcc',
|
||||
'-static-libstdc++',
|
||||
'-static',
|
||||
language: 'cpp',
|
||||
)
|
||||
|
||||
# use this for common options only for our executables
|
||||
cpp_args=[]
|
||||
# these are passed as override_defaults
|
||||
|
|
BIN
win_installer.ifp
Normal file
BIN
win_installer.ifp
Normal file
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue