mirror of
https://github.com/TangentFoxy/LovePackaging.git
synced 2024-11-09 09:34:22 +00:00
27 lines
878 B
Plaintext
27 lines
878 B
Plaintext
# The name of the resulting executables.
|
|
packageName="LovePackagingExample"
|
|
# Who made this? (Yes, change this to your name.)
|
|
author="Guard13007"
|
|
# Current version (of your program)
|
|
version="0.1"
|
|
|
|
###### Important! ONLY USE ABSOLUATE PATHS ######
|
|
# Where to place the resulting executables.
|
|
outputDir="$(pwd)/builds"
|
|
# Where the source code is. (This should be where your main.lua file is.)
|
|
sourceDir="$(pwd)/src"
|
|
# Files to include in ZIP packages. (ReadMe's, licenses, etc.)
|
|
# Do not include a "license.txt" file. Name your license something else.
|
|
includes="$(pwd)/includes"
|
|
|
|
# Where unzipped executables to make packages out of will be kept
|
|
win32Dir="$outputDir/win32src"
|
|
win64Dir="$outputDir/win64src"
|
|
osx10Dir="$outputDir/osx10src"
|
|
|
|
# Remove old packages?
|
|
removeOld=false
|
|
|
|
# Only change this if you know what you're doing (Read the README.md file).
|
|
macInfoPlistFixed=false
|