PROJECT: (hopefully) fixed build.bat
This commit is contained in:
parent
a965c2b8a6
commit
875eaf9350
|
|
@ -21,16 +21,19 @@ if "%MAXCORES%"=="" (
|
|||
set CL=/MP%MAXCORES%
|
||||
msbuild.exe x64dbg.sln /m:1 /verbosity:minimal /t:Rebuild /p:%type%
|
||||
)
|
||||
if not %ERRORLEVEL%==0 exit
|
||||
|
||||
echo Building GUI...
|
||||
rmdir /S /Q src\gui_build
|
||||
cd src\gui
|
||||
qmake x64dbg.pro CONFIG+=release
|
||||
if not %ERRORLEVEL%==0 exit
|
||||
if "%MAXCORES%"=="" (
|
||||
jom
|
||||
) else (
|
||||
jom /J %MAXCORES%
|
||||
)
|
||||
if not %ERRORLEVEL%==0 exit
|
||||
cd ..\..
|
||||
goto :restorepath
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ AbstractTableScrollBar::AbstractTableScrollBar(QScrollBar* scrollbar)
|
|||
setOrientation(scrollbar->orientation());
|
||||
setParent(scrollbar->parentWidget());
|
||||
}
|
||||
|
||||
askdjhasdkjhasd
|
||||
void AbstractTableScrollBar::enterEvent(QEvent* event)
|
||||
{
|
||||
Q_UNUSED(event);
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
#include "../exe/LoadResourceString.h"
|
||||
#include "../exe/icon.h"
|
||||
#include "../dbg/GetPeArch.h"
|
||||
errorasdasd
|
||||
|
||||
#pragma comment(lib, "comctl32.lib")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue