removed old build bat files

Dieser Commit ist enthalten in:
Reinder Feenstra 2021-08-21 00:39:05 +02:00
Ursprung 7d8086959b
Commit 3ab08e5499
2 geänderte Dateien mit 0 neuen und 33 gelöschten Zeilen

Datei anzeigen

@ -1,22 +0,0 @@
pushd %CD%
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
call "%QT_PATH%\msvc2017_64\bin\qtenv2.bat"
popd
set QMAKE_SPEC=win32-msvc
md build-client
pushd %CD%
cd build-client
qmake ..\client\traintastic-client.pro -spec %QMAKE_SPEC% CONFIG+="release" DESTDIR=../build-client
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
"%QT_PATH%\..\Tools\QtCreator\bin\jom.exe" -j %NUMBER_OF_PROCESSORS% -f Makefile
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
"%QT_PATH%\msvc2017_64\bin\windeployqt.exe" --release --no-translations -no-system-d3d-compiler --no-opengl-sw traintastic-client.exe
if %ERRORLEVEL% neq 0 exit %ERRORLEVEL%
popd
pause

Datei anzeigen

@ -1,11 +0,0 @@
pushd %CD%
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
popd
md build-server
pushd %CD%
cd build-server
cmake -G"Visual Studio 15 2017 Win64" -DENABLE_LUA_SCRIPTING=OFF -DENABLE_USB_XPRESSNET_INTERFACE=OFF ..\server\
cmake --build . --config Release
popd
pause