build
Builds a C++ project.
Compiling all source files and linking them into an executable.
Command
cf build
Aliases
build
, b
The workspace you run the command in has to contain a .codeframe config file
Arguments
Mode
mode=
/ m=
The mode=
flag can be negated as long as you use one of these options
Options: debug
release
profile
- Debug
- Profile
- Release
cf build
cf build profile
cf build release
Library
Build a library only by setting the library argument
library=
/ lib=
/ l=
- Debug
- Profile
- Release
cf build lib=<library_name>
cf build profile lib=<library_name>
cf build release lib=<library_name>