From 222927070f05533e862a27b0d7e6b9d5e10b6a6e Mon Sep 17 00:00:00 2001 From: thefish Date: Wed, 6 Nov 2019 23:22:11 +0300 Subject: [PATCH] make game executable --- Makefile | 1 + engine/fov/xecutor/precomputed_xecutor.go | 2 ++ engine/fov/xecutor/precomputed_xecutor_test.go | 1 + 3 files changed, 4 insertions(+) create mode 100644 engine/fov/xecutor/precomputed_xecutor.go create mode 100644 engine/fov/xecutor/precomputed_xecutor_test.go diff --git a/Makefile b/Makefile index efcb1fd..919c0a1 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,7 @@ build.game.linux64: cp -r $(CWD)/resources $(DISTFOLDER) && \ $(GO) build -ldflags $(LDFLAGS) -o $(DISTFOLDER)/game $(CWD)/cmd/game/main.go && \ strip $(DISTFOLDER)/game && \ + chmod +x $(DISTFOLDER)/game && \ cd $(DISTFOLDER) && zip -r ../$(PROJECT_NAME)-$(OS)-${PKG_VER}.zip . -x *.git* build.game.win64: diff --git a/engine/fov/xecutor/precomputed_xecutor.go b/engine/fov/xecutor/precomputed_xecutor.go new file mode 100644 index 0000000..6f40e5b --- /dev/null +++ b/engine/fov/xecutor/precomputed_xecutor.go @@ -0,0 +1,2 @@ +package xecutor + diff --git a/engine/fov/xecutor/precomputed_xecutor_test.go b/engine/fov/xecutor/precomputed_xecutor_test.go new file mode 100644 index 0000000..0004f90 --- /dev/null +++ b/engine/fov/xecutor/precomputed_xecutor_test.go @@ -0,0 +1 @@ +package xecutor