Skip to content

Commit

Permalink
Fix compilation for Linux simulator
Browse files Browse the repository at this point in the history
  • Loading branch information
chances committed Feb 16, 2024
1 parent c039fc6 commit a490bdb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions examples/shapes/dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
"authors": [
"Chance Snow"
],
"license": "BSD 3-clause",
"license": "MIT",
"copyright": "Copyright © 2022, Chance Snow",
"targetPath": "dist",
"targetName": "pdex",
"systemDependencies": "Playdate SDK >= 1.12.1",
"buildOptions": ["betterC"],
"dependencies": {
"playdate": {
"path": "../../"
Expand All @@ -23,10 +24,11 @@
],
"postBuildCommands-posix": [
"touch dist/pdex.bin",
"$PLAYDATE_SDK_PATH/bin/pdc $PACKAGE_DIR/dist app.pdx"
"mv dist/libpdex.so dist/pdex.so",
"$PLAYDATE_SDK_PATH/bin/pdc --skip-unknown $PACKAGE_DIR/dist app.pdx"
],
"postBuildCommands-windows": [
"pdc $PACKAGE_DIR/dist app.pdx"
"$PLAYDATE_SDK_PATH/bin/pdc --skip-unknown $PACKAGE_DIR/dist app.pdx"
]
},
{
Expand Down

0 comments on commit a490bdb

Please sign in to comment.