about summary refs log tree commit diff stats
path: root/premake5.lua
diff options
context:
space:
mode:
authorCharadon <dev@iotib.net>2022-06-25 01:55:56 -0400
committerCharadon <dev@iotib.net>2022-06-25 01:55:56 -0400
commitbc664e9a94271463e35e26a7c988757469986ad7 (patch)
tree36a920e2767b10406ca4faa467bf604f602444b1 /premake5.lua
parentc020a309846d9d20be1badd28e592da161d1761f (diff)
downloadPong-C-bc664e9a94271463e35e26a7c988757469986ad7.tar.gz
Added a manual
Diffstat (limited to 'premake5.lua')
-rw-r--r--premake5.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/premake5.lua b/premake5.lua
index 6105513..b7d7f0c 100644
--- a/premake5.lua
+++ b/premake5.lua
@@ -7,7 +7,9 @@ project("Pong")
         description = "Install the game to prefix.",
         execute = function()
 	    os.mkdir(string.format("%s/Pong/resources", prefix))
+		os.mkdir(string.format("%s/Pong/docs", prefix))
 	    os.executef("cp -r resources/* %s/Pong/resources/", prefix)
+		os.executef("cp -r docs/* %s/Pong/docs", prefix)
         os.executef("install -m755 bin/*/Pong %s/Pong/pong", prefix)
         os.exit(0)
         end