mirror of
https://github.com/open-goal/jak-project
synced 2026-09-06 03:08:29 -04:00
e5b0541d98
* Add a Release build configuration.
* Batch file alternatives for decomp/gc/gk
For the shell-less, or people with a different Windows configuration.
* all-types.gc: Fix typo.
* gcommon.gc: Typo.
* debugger: use enum class for InstructionInfo::Kind
* decompilerIR: use enum class for IR_Store::Kind
* Update all-types.gc
* decompiler: tab to spaces
* root batch files: update directories
* Use a gitignore inside "log" folder to fix windows crashes
* Revert "Update all-types.gc"
This reverts commit 5ef179bb4e.
61 lines
1.3 KiB
CMake
61 lines
1.3 KiB
CMake
add_library(
|
|
decomp
|
|
SHARED
|
|
data/game_count.cpp
|
|
data/game_text.cpp
|
|
data/StrFileReader.cpp
|
|
data/tpage.cpp
|
|
|
|
Disasm/Instruction.cpp
|
|
Disasm/InstructionDecode.cpp
|
|
Disasm/InstructionMatching.cpp
|
|
Disasm/InstructionParser.cpp
|
|
Disasm/OpcodeInfo.cpp
|
|
Disasm/Register.cpp
|
|
|
|
Function/BasicBlocks.cpp
|
|
Function/CfgVtx.cpp
|
|
Function/ExpressionBuilder.cpp
|
|
Function/ExpressionStack.cpp
|
|
Function/Function.cpp
|
|
Function/RegUsage.cpp
|
|
Function/TypeAnalysis.cpp
|
|
Function/TypeInspector.cpp
|
|
|
|
IR/BasicOpBuilder.cpp
|
|
IR/CfgBuilder.cpp
|
|
IR/IR.cpp
|
|
IR/IR_ExpressionStack.cpp
|
|
IR/IR_TypeAnalysis.cpp
|
|
|
|
IR2/AtomicOp.cpp
|
|
IR2/AtomicOpBuilder.cpp
|
|
IR2/Env.cpp
|
|
|
|
ObjectFile/LinkedObjectFile.cpp
|
|
ObjectFile/LinkedObjectFileCreation.cpp
|
|
ObjectFile/ObjectFileDB.cpp
|
|
ObjectFile/ObjectFileDB_IR2.cpp
|
|
|
|
util/DecompilerTypeSystem.cpp
|
|
util/TP_Type.cpp
|
|
|
|
config.cpp
|
|
)
|
|
|
|
target_link_libraries(decomp
|
|
minilzo
|
|
common
|
|
fmt
|
|
)
|
|
|
|
add_executable(decompiler
|
|
main.cpp
|
|
)
|
|
|
|
target_link_libraries(decompiler
|
|
decomp
|
|
common
|
|
minilzo
|
|
fmt)
|