diff options
| author | Dan Engelbrecht <[email protected]> | 2026-03-18 16:46:27 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2026-03-18 16:46:27 +0100 |
| commit | a4ead902944658a6ae95ed06de7766c21dd0456d (patch) | |
| tree | 1489661a5548a17c822faf7e9c1ed74c2472076d /CLAUDE.md | |
| parent | Allow pre-commit without it being in the PATH (#861) (diff) | |
| download | zen-a4ead902944658a6ae95ed06de7766c21dd0456d.tar.xz zen-a4ead902944658a6ae95ed06de7766c21dd0456d.zip | |
add kind positional argument to xmake sln (#857)
- Improvement: `xmake sln` now accepts an optional positional argument to select the IDE target (e.g. `xmake sln vs2026`); defaults to `vs2022` on Windows, `xcode` on macOS, `vscode` on Linux
Diffstat (limited to 'CLAUDE.md')
| -rw-r--r-- | CLAUDE.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -31,8 +31,10 @@ xmake run zenserver xmake run zen # Generate IDE project files -xmake sln # Windows: Visual Studio 2022 -xmake project -k xcode # macOS: Xcode +xmake sln # default: vs2022 on Windows, xcode on macOS, vscode on Linux +xmake sln vs2026 # Windows: Visual Studio 2026 +xmake sln xcode # macOS: Xcode +xmake sln vscode # VS Code / clangd (compile_commands.json) ``` ### Build Configuration Options |