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: 4 additions & 0 deletions build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ for %%T in (x86_64-pc-windows-msvc aarch64-pc-windows-msvc) do (
)
)
if "%WITH_WSLC%"=="1" (
if exist "!BIN_DIR!\wxc-wslc-daemon.exe" (
copy /Y "!BIN_DIR!\wxc-wslc-daemon.exe" "sdk\node\bin\!SDK_ARCH!\" >nul
echo Copied !SDK_ARCH!\wxc-wslc-daemon.exe
Comment on lines +143 to +145

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will be addressed in PR2

)
if exist "!BIN_DIR!\wslcsdk.dll" (
copy /Y "!BIN_DIR!\wslcsdk.dll" "sdk\node\bin\!SDK_ARCH!\" >nul
echo Copied !SDK_ARCH!\wslcsdk.dll
Expand Down
20 changes: 20 additions & 0 deletions src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ members = [
"backends/lxc/common",
"backends/bubblewrap/common",
"backends/wslc/common",
"backends/wslc/daemon",

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Will be addressed in PR2

"backends/seatbelt/common",
"host/wxc_host_prep",
"host/wxc_winhttp_proxy_shim",
Expand Down
4 changes: 4 additions & 0 deletions src/backends/wslc/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ link-wslcsdk = []
[dependencies]
wxc_common = { workspace = true }
windows = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
anyhow = { workspace = true }
uuid = { workspace = true }
tar = "0.4"
libloading = "0.8"

Expand Down
Loading
Loading