21 lines
593 B
Markdown
21 lines
593 B
Markdown
---
|
|
description: Build the Juliet project using FastBuild
|
|
---
|
|
|
|
// turbo-all
|
|
|
|
This workflow builds the Juliet project and writes output to `misc\agent_output.log`.
|
|
|
|
1. To build the default (clang-Debug):
|
|
// turbo
|
|
`misc\agent_build.bat clang 2>&1 | tee misc\agent_output.log`
|
|
|
|
2. To build a specific configuration (e.g., clang-Debug, msvc-Debug):
|
|
// turbo
|
|
`misc\agent_build.bat clang-Debug 2>&1 | tee misc\agent_output.log`
|
|
|
|
3. To see all available targets:
|
|
// turbo
|
|
`misc\agent_build.bat -showtargets 2>&1 | tee misc\agent_output.log`
|
|
|
|
4. Check build results by reading `misc\agent_output.log`. |