summaryrefslogtreecommitdiff
path: root/build_game.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build_game.sh')
-rwxr-xr-xbuild_game.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/build_game.sh b/build_game.sh
new file mode 100755
index 0000000..d917df3
--- /dev/null
+++ b/build_game.sh
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+build_path=build
+mkdir -p "$build_path"
+
+include_path=include
+include_opts="-I $include_path"
+
+files="source/game/game.cpp"
+build_opts="-fPIC -shared -g -O0"
+
+build_command="g++ $build_opts $include_opts $files -o $build_path/libgame.so"
+
+printf "Building game as a shared library\n"
+printf "This is the build command:\n"
+printf "$build_command\n\n"
+$build_command
+printf "Build Complete!\n"