osquery-1/tools/make-win64-binaries.bat

14 lines
339 B
Batchfile
Raw Normal View History

call "%VS140COMNTOOLS%vcvarsqueryregistry.bat" 64bit
call "%VCINSTALLDIR%vcvarsall.bat" amd64
mkdir .\build\windows10
cd .\build\windows10
cmake ..\.. -G "Visual Studio 14 2015 Win64"
2016-09-12 16:46:52 +00:00
for %%t in (shell,daemon,osquery_tests,osquery_additional_tests) do (
cmake --build . --target %%t --config Release
if errorlevel 1 goto end
)
2016-09-12 16:46:52 +00:00
:end