Improve the example build-settings.rc.

master
poikilos 2021-11-05 20:06:40 -04:00
parent 95c069dc2f
commit 51e6536901
1 changed files with 6 additions and 5 deletions

View File

@ -31,7 +31,7 @@ Settings:
BIN_NAME is the filename for the binary to compile. BIN_NAME is the filename for the binary to compile.
OTHER_DIRS is a list of other subdirectories where files may exist. OTHER_DIRS (optional) is a list of other subdirectories where files may exist.
The filenames (without extension) must not be the same as in any other The filenames (without extension) must not be the same as in any other
folder (since this script places all o files in the same directory). folder (since this script places all o files in the same directory).
Each directory must be free of spaces since it is iterated based on spaces. Each directory must be free of spaces since it is iterated based on spaces.
@ -48,10 +48,11 @@ Settings:
executable and DIST_FILES if any. executable and DIST_FILES if any.
Example build-settings.rc: Example build-settings.rc:
SRC_PATH="$REPO_PATH/src" SRC_PATH="$REPO_PATH/src"
IN_FILES="Application ApplicationDelegate IrrlichtEventReceiver main SaveFileDialog" IN_FILES="Application ApplicationDelegate IrrlichtEventReceiver main SaveFileDialog"
BIN_NAME=my_program BIN_NAME=my_program
OTHER_DIRS="extlib" #OTHER_DIRS="extlib"
#DIST_FILES="media"
With the correct use of a build-settings.rc file, With the correct use of a build-settings.rc file,
This script is identical in every project. This script is identical in every project.