mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 06:54:31 -04:00
cbe21e3b4b
I'm switching away from visual studio (because its broken) so figured I'd document / commit the minimum to get a working environment with the editor I chose (Zed). Also cleaned up the main README so it's not so verbose, link out to secondary pages, etc. I also deleted the Arch and Fedora dockerfiles, they were broken. The ubuntu one still works, so i left it.
21 lines
717 B
YAML
21 lines
717 B
YAML
version: 3
|
|
|
|
vars:
|
|
GOALC_BIN_RELEASE_DIR: "./build/goalc"
|
|
GK_BIN_RELEASE_DIR: "./build/game"
|
|
DECOMP_BIN_DEBUG_DIR: "./build/decompiler"
|
|
DECOMP_BIN_RELEASE_DIR: "./build/decompiler"
|
|
MEMDUMP_BIN_RELEASE_DIR: "./build/tools"
|
|
TYPESEARCH_BIN_RELEASE_DIR: "./build/tools"
|
|
OFFLINETEST_BIN_RELEASE_DIR: "./build"
|
|
GOALCTEST_BIN_RELEASE_DIR: "./build"
|
|
FORMATTER_BIN_RELEASE_DIR: "./build/tools"
|
|
EXE_FILE_EXTENSION: ""
|
|
PYTHON: "python3"
|
|
DEFAULT_CMAKE_RELEASE_PRESET: "Release-linux-clang"
|
|
DEFAULT_CMAKE_DEBUG_PRESET: "Debug-linux-clang"
|
|
CMAKE_GEN_BUILD_DIR_RELEASE: "-B build"
|
|
CMAKE_GEN_BUILD_DIR_DEBUG: "-B build"
|
|
CMAKE_BUILD_DIR_RELEASE: "--build build"
|
|
CMAKE_BUILD_DIR_DEBUG: "--build build"
|