13 lines
259 B
Batchfile
13 lines
259 B
Batchfile
@echo off
|
|
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvars64.bat"
|
|
|
|
rem rd /s /q build 2>nul
|
|
mkdir build 2>nul
|
|
cd build
|
|
|
|
cmake .. -DGGML_VULKAN=ON
|
|
cmake --build . --config Release -j %NUMBER_OF_PROCESSORS%
|
|
|
|
cd ..
|