nushell/scripts/build-all-windows.cmd
Ian Manske 905e3d0715
Remove dataframes crate and feature (#12889)
# Description
Removes the old `nu-cmd-dataframe` crate in favor of the polars plugin.
As such, this PR also removes the `dataframe` feature, related CI, and
full releases of nushell.
2024-05-20 17:22:08 +00:00

31 lines
765 B
Batchfile

@echo off
echo -------------------------------------------------------------------
echo Building nushell (nu.exe) and all the plugins
echo -------------------------------------------------------------------
echo.
echo Building nushell.exe
cargo build --locked
echo.
call :build crates\nu_plugin_example nu_plugin_example.exe
call :build ..\..\crates\nu_plugin_gstat nu_plugin_gstat.exe
call :build ..\..\crates\nu_plugin_inc nu_plugin_inc.exe
call :build ..\..\crates\nu_plugin_query nu_plugin_query.exe
call :build ..\..\crates\nu_plugin_custom_values nu_plugin_custom_values.exe
cd ..\..
exit /b 0
:build
setlocal
set "location=%~1"
set "target=%~2"
cd "%location%"
echo Building %target%
cargo build
echo.
endlocal
exit /b 0