This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
doghook/make.bat
2018-10-07 10:40:01 +01:00

19 lines
358 B
Batchfile

@echo off
pushd %~dp0
call create_projects
echo building...
for /F "tokens=*" %%a in ('find_my_visual_studio.exe msbuild_exe') do set msbuild_folder=%%a
echo msbuild is located at %msbuild_folder%
"%msbuild_folder%\\msbuild" /property:GenerateFullPaths=true /t:build premake\doghook.sln /p:Configuration=Debug /verbosity:minimal
echo done.
popd
exit