Skip to content

Commit 677886e

Browse files
authored
Add --config Release to command
Also add markdown colorization support
1 parent 7d739f2 commit 677886e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You can feed it binary or text files.
1111
You can copy/paste the output as string contents into your C source or `#include`
1212
the output like so:
1313

14-
```
14+
``` c
1515
static char data[] =
1616
#include "data.inc"
1717
;
@@ -32,18 +32,18 @@ Let's use **mulle-c-string-escape** to create a C string representation of
3232
itself into a file "x.inc". We use `cmake` here, instead of `mulle-sde craft --release`, to ease
3333
the developer's fear of the unknown:
3434

35-
```
35+
``` sh
3636
mkdir -p kitchen/Release
3737
cmake -B kitchen/Release -DCMAKE_BUILD_TYPE=Release
38-
cmake --build kitchen/Release
38+
cmake --build kitchen/Release --config Release
3939
./kitchen/Release/mulle-c-string-escape \
4040
./kitchen/Release/mulle-c-string-escape \
4141
x.inc
4242
```
4343

4444
To verify that this has actually worked:
4545

46-
```
46+
``` sh
4747
cat <<EOF > x.c
4848
#include <stdio.h>
4949
@@ -74,7 +74,7 @@ This is a [mulle-sde](https://mulle-sde.github.io/) project.
7474
It comes with its own virtual environment and list of dependencies.
7575
To fetch and build everything say:
7676

77-
```
77+
``` sh
7878
mulle-sde craft
7979
```
8080

0 commit comments

Comments
 (0)