Fix missing library on windows
parent
e8c654bd79
commit
ea63a5ecd0
|
@ -56,6 +56,7 @@ after_test:
|
||||||
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Widgets.dll
|
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Widgets.dll
|
||||||
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Gui.dll
|
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Gui.dll
|
||||||
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Core.dll
|
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Core.dll
|
||||||
|
- 7z a dust3d-%TAG%-%PLATFORM%.zip %QTDIR%\bin\Qt5Network.dll
|
||||||
- 7z a dust3d-%TAG%-%PLATFORM%.zip "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\%PLATFORM%\Microsoft.VC140.CRT\msvcp140.dll"
|
- 7z a dust3d-%TAG%-%PLATFORM%.zip "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\%PLATFORM%\Microsoft.VC140.CRT\msvcp140.dll"
|
||||||
- 7z a dust3d-%TAG%-%PLATFORM%.zip "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\%PLATFORM%\Microsoft.VC140.CRT\vcruntime140.dll"
|
- 7z a dust3d-%TAG%-%PLATFORM%.zip "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\%PLATFORM%\Microsoft.VC140.CRT\vcruntime140.dll"
|
||||||
- mkdir platforms
|
- mkdir platforms
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
#include "material.h"
|
#include "material.h"
|
||||||
|
|
||||||
int TextureGenerator::m_textureSize = 1024;
|
int TextureGenerator::m_textureSize = 1024;
|
||||||
QColor TextureGenerator::m_defaultTextureColor = Qt::darkGray;
|
QColor TextureGenerator::m_defaultTextureColor = Qt::white; //Qt::darkGray;
|
||||||
|
|
||||||
TextureGenerator::TextureGenerator(const Outcome &outcome, Snapshot *snapshot) :
|
TextureGenerator::TextureGenerator(const Outcome &outcome, Snapshot *snapshot) :
|
||||||
m_resultTextureGuideImage(nullptr),
|
m_resultTextureGuideImage(nullptr),
|
||||||
|
|
Loading…
Reference in New Issue