Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ environment variables.
# Run the server, with debug logging enabled
export GSETTINGS_SCHEMA_DIR=build/credentialsd-ui/data
export RUST_LOG=credentialsd=debug,credentials_ui=debug
./build/credentialsd/target/debug/credentialsd &
./build/credentialsd-ui/target/debug/credentialsd-ui
./build/credentialsd/src/credentialsd &
./build/credentialsd-ui/src/credentialsd-ui
```

## Testing development builds with Firefox Web Add-On
Expand Down
5 changes: 4 additions & 1 deletion credentialsd-ui/src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,16 @@ custom_target(
install_dir: bindir,
depends: resources,
command: [
'rm',
'-f', '@OUTPUT@',
'&&',
'env',
cargo_env,
cargo,
'build',
cargo_options,
'&&',
'cp',
'ln',
cargo_target_dir / rust_profile / gui_executable_name,
'@OUTPUT@',
],
Expand Down
5 changes: 4 additions & 1 deletion credentialsd/src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,16 @@ custom_target(
install: true,
install_dir: bindir,
command: [
'rm',
'-f', '@OUTPUT@',
'&&',
'env',
cargo_env,
cargo,
'build',
cargo_options,
'&&',
'cp',
'ln',
cargo_target_dir / rust_profile / backend_executable_name,
'@OUTPUT@',
],
Expand Down