Set project(ObsidianDragon VERSION 2.0.0) (was 1.3.0); the lite variant keeps its own independent DRAGONX_LITE_VERSION (1.0.0). res/ObsidianDragon.manifest is generated per-variant by configure_file from res/ObsidianDragon.manifest.in, so it was wrongly tracked (it kept showing dirty, stamped with whichever variant built last) - untrack it and gitignore it; the .in template remains the source. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
# Build trees per platform (build/linux/, build/windows/, build/mac/)
|
|
build/*
|
|
|
|
# Release distributable artifacts (release/linux/, release/windows/, release/mac/)
|
|
release/
|
|
|
|
# Prebuilt binaries (ignore contents, keep dirs via .gitkeep)
|
|
prebuilt-binaries/dragonxd-linux/*
|
|
!prebuilt-binaries/dragonxd-linux/.gitkeep
|
|
prebuilt-binaries/dragonxd-win/*
|
|
!prebuilt-binaries/dragonxd-win/.gitkeep
|
|
prebuilt-binaries/dragonxd-mac/*
|
|
!prebuilt-binaries/dragonxd-mac/.gitkeep
|
|
prebuilt-binaries/xmrig-hac/*
|
|
!prebuilt-binaries/xmrig-hac/.gitkeep
|
|
|
|
|
|
# External sources / toolchains (created by scripts/setup.sh)
|
|
external/
|
|
|
|
# Internal docs
|
|
doc/
|
|
|
|
# Downloaded libsodium (built by scripts/fetch-libsodium.sh)
|
|
libs/libsodium-mac/
|
|
libs/libsodium-win/
|
|
libs/libsodium/
|
|
libs/libsodium-*.tar.gz
|
|
|
|
# dev artifacts
|
|
imgui.ini
|
|
*.bak
|
|
*.bak*
|
|
*.params
|
|
asmap.dat
|
|
/external/xmrig-hac
|
|
/memory
|
|
/todo.md
|
|
/.github/
|
|
/ObsidianDragon-agent/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
# Local-only archive of superseded lite-wallet design/planning docs (untracked)
|
|
docs/_archive/
|
|
|
|
# ed25519 release-signing keys — the secret key must NEVER be committed
|
|
*.ed25519.key
|
|
*.ed25519.pub.b64
|
|
|
|
|
|
# Lite-backend deps are fetched (or `cargo vendor`-ed locally for offline); not committed.
|
|
third_party/silentdragonxlite/lib/vendor/
|
|
|
|
# Generated by configure_file from res/ObsidianDragon.manifest.in (do not track)
|
|
res/ObsidianDragon.manifest
|