3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-09 02:41:52 +00:00
z3/scripts/vsts.cmd
Nikolaj Bjorner ba2e28fa0e update build script
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2018-03-19 14:55:38 -07:00

27 lines
534 B
Batchfile

rem Build
md build
cd build
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
cmake -DBUILD_DOTNET_BINDINGS=True -DBUILD_JAVA_BINDINGS=True -DBUILD_PYTHON_BINDINGS=True -G "NMake Makefiles" ../
nmake
rem test python bindings
pushd python
python z3test.py z3
python z3test.py z3num
popd
rem Build and run examples
rem Build and run unit tests
nmake test-z3
rem test-z3.exe -a
cd ..
rem Run regression tests
rem git pull https://github.com/z3prover/z3test z3test
rem cd z3test