mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2026-07-21 08:15:03 +00:00
* Delete (probably) wrongly committed vs config file * Remove Nuklear GUI * Clean up SLN configs (Reduce to 64 bit full debug & release) * Sync bat scripts, prepare to move * Build rust in release when release * Update changelog * Delete rustx86.bat
10 lines
337 B
Batchfile
10 lines
337 B
Batchfile
for /f "delims=" %%i in ('cd') do set output=%%i
|
|
set CARGO_TARGET_DIR=%output%
|
|
cd ..\src\rust
|
|
cargo build %1 --features "hardsubx_ocr" --target x86_64-pc-windows-msvc
|
|
cd ..\..\windows
|
|
IF "%~1"=="-r" (
|
|
copy x86_64-pc-windows-msvc\release\ccx_rust.lib .\ccx_rust.lib
|
|
) ELSE (
|
|
copy x86_64-pc-windows-msvc\debug\ccx_rust.lib .\ccx_rust.lib
|
|
) |