mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
16 lines
422 B
Batchfile
16 lines
422 B
Batchfile
call "%VS140COMNTOOLS%vcvarsqueryregistry.bat" 64bit
|
|
call "%VCINSTALLDIR%vcvarsall.bat" amd64
|
|
|
|
mkdir .\build\windows10
|
|
cd .\build\windows10
|
|
cmake ..\.. -G "Visual Studio 14 2015 Win64"
|
|
|
|
for %%t in (shell,daemon,osquery_tests,osquery_additional_tests,osquery_tables_tests) do (
|
|
cmake --build . --target %%t --config Release -- /verbosity:minimal /maxcpucount
|
|
if errorlevel 1 goto end
|
|
)
|
|
|
|
ctest --output-on-failure
|
|
|
|
:end
|