@echo off cd oss_trunk echo Cleaning git checkout folder. git clean -n -d -f -x pause git clean -d -f -x set config=all echo Make solution. call build.bat %config% -ifort 21 -prepareonly cd build_%config% echo Build solution. set currentWorkDir=%CD% call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\devenv.com" %config%.sln /Rebuild "Debug|x64" 1>%currentWorkDir%\build_%config%.log 2>&1 cd ../.. echo Open solution. call open_solution_fm.bat rem "C:\Program Files\CMake\bin\cmake.exe" ./src/cmake -D CMAKE_BUILD_TYPE=Debug -D CONFIGURATION_TYPE:STRING=all -B build_all -D CMAKE_INSTALL_PREFIX=".\build_all\x64\Debug\" rem cd build_all rem "C:\Program Files\CMake\bin\cmake.exe" --build . -j --config Debug > out.txt rem cd ..