Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed configuration #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ cd my_app
bake init
```

This will have created an simple executable project with the following `project.json` configuation file:
This will have created an simple executable project with the following `project.json` configuration file:

```json
{
Expand Down Expand Up @@ -109,7 +109,7 @@ corto locate my_project --all
```

#### Do a release build
By default, bake will build projects in debug mode, which disables optimizations and enables symbols. If you want to build projects in release build, specifiy the `release` configuration, like this:
By default, bake will build projects in debug mode, which disables optimizations and enables symbols. If you want to build projects in release build, specify the `release` configuration, like this:

```demo
bake --cfg release
Expand Down Expand Up @@ -737,7 +737,7 @@ Flag | Description
-----|--------------
--id | Manually set project id
-k,--kind | Specify project kind
-i,--includes | Specify paths that contain include files, separated by comma. Include files will be copied to the project include directory in the bake environment. This is not the same as specifiying an include path!
-i,--includes | Specify paths that contain include files, separated by comma. Include files will be copied to the project include directory in the bake environment. This is not the same as specifying an include path!
-s,--sources | Specify paths that contain source files, separated by comma. Source files fill be built as part of the project.
-l,--lang | Specify programming language (default = 'c')
-a,--artefact | Specify artefact name
Expand Down