37 lines
1.8 KiB
Plaintext
Executable File
37 lines
1.8 KiB
Plaintext
Executable File
##########################################################################################################################
|
|
# RULES FILE
|
|
# Usage & Details : https://devstar.rockstargames.com/wiki/index.php/Dev:Project_builder3#game.rules
|
|
##########################################################################################################################
|
|
|
|
# Rules : independent of exporter.
|
|
Rules {
|
|
#-------------------------------------------------------------------------------------------
|
|
# Setup Scratch ( make your own vars here and reuse with <var> syntax. )
|
|
#-------------------------------------------------------------------------------------------
|
|
|
|
#-------------------------------------------------------------------------------------------
|
|
# General
|
|
#-------------------------------------------------------------------------------------------
|
|
|
|
# Security - disable RTTI in Final/Master builds
|
|
Condition [Platform=='x64'] {
|
|
Settings.General.Rtti[Config=='Final'] = 'false'
|
|
Settings.General.Rtti[Config=='Master'] = 'false'
|
|
Settings.General.Rtti[Config=='SteamFinal'] = 'false'
|
|
Settings.General.Rtti[Config=='SteamMaster'] = 'false'
|
|
}
|
|
|
|
#-------------------------------------------------------------------------------------------
|
|
# Compiler
|
|
#-------------------------------------------------------------------------------------------
|
|
|
|
#-------------------------------------------------------------------------------------------
|
|
# Librarian
|
|
#-------------------------------------------------------------------------------------------
|
|
|
|
#-------------------------------------------------------------------------------------------
|
|
# Exe Settings : Linker, Image & Deploy
|
|
#-------------------------------------------------------------------------------------------
|
|
|
|
} # end rules
|