mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
Enable string pooling
JSRF evidently has string pooling enabled (i.e. program-wide deduplication of strings), so we'll want it in our compiler settings as well.
This commit is contained in:
parent
e6d7acfa05
commit
f193fef3ce
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ all: src/JSRF/Jet2.obj
|
|||
# Simple inference rule for producing object files
|
||||
.SUFFIXES: .cpp .obj
|
||||
.cpp.obj:
|
||||
CL.EXE /nologo /Wall /TP /W3 /Ogityb0 /MT /GX /Fo$@ /c $<
|
||||
CL.EXE /nologo /Wall /TP /W3 /Ogityb0 /MT /Gf /GX /Fo$@ /c $<
|
||||
|
||||
# Header files used for each object
|
||||
src/JSRF/Jet2.obj: src/JSRF/Core.hpp src/Std.hpp src/XDK/D3D.hpp\
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue