diff options
| author | Joel Stålnacke <joel@saker.fi> | 2024-10-08 19:59:10 +0300 |
|---|---|---|
| committer | Joel Stålnacke <joel@saker.fi> | 2024-10-08 19:59:10 +0300 |
| commit | 4bac6ae2e725a1997674fd3369bf4ea032235d8b (patch) | |
| tree | cd9682eac89c1da5d5c54741684b5e8405f5d54c /lib/build.sh | |
| parent | 21001a44f1781423ae04f35ee41e042ae6f01355 (diff) | |
Add a native "Hello World" to the project
After much trouble with MSBuild
Diffstat (limited to 'lib/build.sh')
| -rwxr-xr-x | lib/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/build.sh b/lib/build.sh index ccdc117..13aaf8e 100755 --- a/lib/build.sh +++ b/lib/build.sh @@ -48,4 +48,4 @@ case "$runtime" in esac echo Building for runtime "$runtime ..." -mkdir -p "$output/runtimes/$runtime/native" && $CC $CFLAGS $SOURCES -shared $LDFLAGS -o "$output/runtimes/$runtime/native/$sofile" && echo Done +mkdir -p "$output/$runtime" && $CC $CFLAGS $SOURCES -shared $LDFLAGS -o "$output/$runtime/$sofile" && echo Done |
