golem configure
On this page
This command allows you to configure how to build your project.
The choices are saved, therefore it needs to be run only once. Modifying the project file will not require re-executing this command.
golem configure [options]Build options
--dir=<build_dir>Directory where to build the project
Default:
./build--variant=(debug|release)Variants define a set of default flags/options for your build
Default:
debug--runtime=(shared|static)Links the runtime dynamically (
shared) or statically (static)Default:
shared--link=(shared|static)Builds and links libraries dynamically (
shared) or staticaly (static)Default:
shared--arch=(x64|x86)Builds using the specfied architecture
Default:
<your_os_arch>
IDE/support options
--vscodeGenerates files to enable Microsoft C/C++ Extension’s IntelliSense in VSCode
Default:
False--clangdGenerates files to support clangd
Default:
False--compile-commandsGenerates
compile_commands.jsonfiles in./build/golem/compile_commands/Default:
False
Qt options
--qtdir=<qt_dir>Directory to Qt, for example
C:\Qt\6.10.0\msvc2022_64Default:
None