Skip to content

Commit a2343bd

Browse files
att
1 parent be9d0a3 commit a2343bd

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,16 @@ For buiding from scratch you need to have [darwin](https://github.com/OUIsolutio
2929
curl -L https://github.com/OUIsolutions/Darwin/releases/download/0.2.0/darwin.out -o darwin.out && chmod +x darwin.out && sudo mv darwin.out /usr/bin/darwin
3030
```
3131

32-
Then you can build the project with in the root dir of the project:
32+
--build from docker:
3333
```bash
3434
darwin run_blueprint build/ --mode folder build_release
3535
```
3636

37+
--build from local:
38+
```bash
39+
darwin run_blueprint build/ --mode folder build_local
40+
```
41+
3742
It will generate all the **releases** in the **/release** dir.
3843

3944

build/main.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function main()
1515

1616
local no_dep_amalgamation = darwin.camalgamator.generate_amalgamation_with_callback("src/one.c",
1717
function(import, path)
18-
if import == "src/imports/../dependencie.dependencies.h" then
18+
if import == "src/imports/../dependencie.dep.h" then
1919
return "dont-include"
2020
end
2121
return "include-once"

0 commit comments

Comments
 (0)