Cargo.toml:
```toml [lib] path = "src/lib.rs" crate-type = ["cdylib"]
[dependencies] fm_plugin = "0.1.0"
[build-dependencies] fm_plugin = "0.1.0"
[package.metadata.cargo-post.dependencies] directories = "" toml = "" serde = { version = "1.0", features = ["derive"] } fm_plugin = "0.1.0" ```
config.toml:
```toml [filemaker] extpath = "path/to/filemaker/Extensions" binpath = "path/to/filemaker/executable.exe"
[plugin] name = "my_plugin" ```
build.rs:
```rust
fn main() -> Result<(), Box
post_build.rs:
```rust
fn main() -> Result<(), Box
lib.rs:
```rust use fm_plugin::prelude::*;
struct MyPlugin;
impl Plugin for MyPlugin { fn id() -> &'static [u8; 4] { &b"MyPl" }
fn name() -> &'static str {
"MY PLUGIN"
}
fn register_functions() -> Vec<ExternalFunction> {
vec![ExternalFunction {
id: 100,
name: "MyPlugin_MyFunction",
definition: "MyPlugin_MyFunction( arg1 ; arg2 )",
description: "Does some really great stuff.",
min_args: 2,
max_args: 2,
compatible_flags: DisplayInAllDialogs | FutureCompatible,
min_version: ExternVersion::V160,
function_ptr: Some(MyFunction::extern_func),
}
]
}
...
}
pub struct MyFunction;
impl FileMakerFunction for MyFunction { fn function(id: i16, env: &ExprEnv, args: &DataVect, result: &mut Data) -> FMError { //log some info to the desktop (plugin.log) log("some troubleshooting info");
...
FMError::NoError
}
}
register_plugin!(MyPlugin); ```
cargo install cargo-post
If you set up the build/post_build scripts as shown above, running cargo post build --release
will: