From c1bc9cf7ccf1727e43f831f20481290ac1f2cb57 Mon Sep 17 00:00:00 2001 From: GenZmeY Date: Thu, 3 Mar 2022 20:48:02 +0300 Subject: [PATCH] Update build tools --- README.md | 2 +- build.cfg | 16 ---------------- test.cfg => builder.cfg | 23 ++++++++++++++++++++++- tools | 2 +- 4 files changed, 24 insertions(+), 19 deletions(-) delete mode 100644 build.cfg rename test.cfg => builder.cfg (52%) diff --git a/README.md b/README.md index ea70694..90e9f27 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Open git-bash in the ServerExt source folder and run command: `./tools/builder -t` (or `./tools/builder -ct` if you haven't compiled the mutator yet) -A local single-user test will be launched with parameters from `test.cfg` (edit this file if you want to test mutator with different parameters). +A local single-user test will be launched with parameters from `builder.cfg` (edit this file if you want to test mutator with different parameters). # Using and configuring ServerExt A detailed manual is available on the [mod page](https://steamcommunity.com/sharedfiles/filedetails/?id=2085786712) in the steam workshop. diff --git a/build.cfg b/build.cfg deleted file mode 100644 index 19eb80d..0000000 --- a/build.cfg +++ /dev/null @@ -1,16 +0,0 @@ -# Build parameters - -# If True - compresses the mutator when compiling -# Scripts will be stored in binary form -# (reduces the size of the output file) -StripSource="True" - -# Mutators to be compiled -# Specify them with a space as a separator, -# Mutators will be compiled in the specified order -PackageBuildOrder="ServerExt ServerExtMut" - -# Mutators that will be uploaded to the workshop -# Specify them with a space as a separator, -# The order doesn't matter -PackageUpload="ServerExt ServerExtMut" diff --git a/test.cfg b/builder.cfg similarity index 52% rename from test.cfg rename to builder.cfg index 5c8e2f5..8f0798c 100644 --- a/test.cfg +++ b/builder.cfg @@ -1,4 +1,25 @@ -# Test parameters +### Build parameters ### + +# If True - compresses the mutator when compiling +# Scripts will be stored in binary form +# (reduces the size of the output file) +StripSource="True" + +# Mutators to be compiled +# Specify them with a space as a separator, +# Mutators will be compiled in the specified order +PackageBuildOrder="ServerExt ServerExtMut" + + +### Steam Workshop upload parameters ### + +# Mutators that will be uploaded to the workshop +# Specify them with a space as a separator, +# The order doesn't matter +PackageUpload="ServerExt ServerExtMut" + + +### Test parameters ### # Map: Map="KF-Nuked" diff --git a/tools b/tools index ce574c2..8dfe215 160000 --- a/tools +++ b/tools @@ -1 +1 @@ -Subproject commit ce574c29ed77ba8f9dfaf1ef23235c9d2c0c89b3 +Subproject commit 8dfe215998be7947d85872fe9d85848926f56583