mirror of
https://github.com/Z3Prover/z3
synced 2026-04-30 23:53:44 +00:00
git bindings v1.0
This commit is contained in:
parent
adacc27644
commit
a03500a194
33 changed files with 5289 additions and 7 deletions
30
build_z3.bat
Normal file
30
build_z3.bat
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
@echo off
|
||||
REM Z3 Build Script
|
||||
|
||||
echo Checking for build directory...
|
||||
if not exist C:\z3\build (
|
||||
echo Creating build directory...
|
||||
mkdir C:\z3\build
|
||||
) else (
|
||||
echo Build directory already exists
|
||||
)
|
||||
|
||||
echo Changing to build directory...
|
||||
cd /d C:\z3\build
|
||||
|
||||
echo Running CMake configuration...
|
||||
cmake ..
|
||||
if errorlevel 1 (
|
||||
echo CMake configuration failed!
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo Building Z3 with parallel 8...
|
||||
cmake --build . --parallel 8
|
||||
if errorlevel 1 (
|
||||
echo Build failed!
|
||||
exit /b 1
|
||||
)
|
||||
|
||||
echo Build completed successfully!
|
||||
exit /b 0
|
||||
Loading…
Add table
Add a link
Reference in a new issue