Files
jak-project/scripts/tasks/Taskfile_darwin.yml
T
Tyler Wilding 783f6d9abd deps: update imgui to 1.92.6 and allow changing imgui font/style at run-time (#4152)
Did this while investigating #3299 which I could not reproduce.

ImGui's had a recent version that allows for dynamically scaling the
font, pretty cool, slightly improves our styling menu.

Closes #3299
2026-04-02 01:03:48 -04:00

21 lines
729 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-macos-arm64-clang"
DEFAULT_CMAKE_DEBUG_PRESET: "Debug-macos-arm64-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"