Skip to content
Snippets Groups Projects
Commit 3e11cd8b authored by Federico Lolli's avatar Federico Lolli
Browse files

Update README and justfile path to dll

parent b33928b0
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ fullfile(matlabroot(), 'bin', computer('arch'))
export MATLAB_LIB_DIR="<MATLAB_PATH>"
cargo build --release
```
After the build, your file will be available in the `target/release/` folder with the name `libserial_bridge.dylib` for mac systems and `serialbridge.dll` for windows systems.
After the build, your file will be available in the `target/release/` folder with the name `libserial_bridge.dylib` for mac systems and `serial_bridge.dll` for windows systems.
mv libserial_bridge.dylib serialbridge.<EXT>
......
......@@ -6,7 +6,7 @@ alias d := docs
source := 'docs/documentation.typ'
dest := 'documentation.pdf'
dynlib := if os_family() == "unix" { "libserial_bridge.dylib" } else if os_family() == "windows" { "serialbridge.dll" } else { "libserial_bridge.dylib" }
dynlib := if os_family() == "unix" { "libserial_bridge.dylib" } else if os_family() == "windows" { "serial_bridge.dll" } else { "libserial_bridge.dylib" }
ext := if os() == "macos" { "mexmaci64" } else if os_family() == "windows" { "mexw64" } else { "mexa64" }
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment