changes for using Visual Studio express and using a project file which was generated by qmake
This commit is contained in:
parent
60823ae544
commit
070be40117
1 changed files with 28 additions and 24 deletions
|
@ -5,13 +5,17 @@ set NSIS_PATH=%PROGRAMFILES%\NSIS
|
||||||
|
|
||||||
if "%VSINSTALLDIR%" == "" goto vsenvproblem
|
if "%VSINSTALLDIR%" == "" goto vsenvproblem
|
||||||
|
|
||||||
rem clean and compile solution -------------------------------------------------
|
rem create visual studio project file ------------------------------------------
|
||||||
devenv llcon.sln /clean "Release|Win32"
|
cd ..
|
||||||
|
set QMAKESPEC=win32-msvc2010
|
||||||
|
qmake -tp vc
|
||||||
|
|
||||||
call MocQT
|
rem clean and compile solution -------------------------------------------------
|
||||||
devenv llcon.sln /build "Release|Win32"
|
vcexpress llcon.vcxproj /clean "Release|Win32"
|
||||||
|
vcexpress llcon.vcxproj /build "Release|Win32"
|
||||||
|
|
||||||
rem create installer -----------------------------------------------------------
|
rem create installer -----------------------------------------------------------
|
||||||
|
cd windows
|
||||||
"%NSIS_PATH%\makensis.exe" installer.nsi
|
"%NSIS_PATH%\makensis.exe" installer.nsi
|
||||||
|
|
||||||
move llconinstaller.exe ../deploy/llcon-version-installer.exe
|
move llconinstaller.exe ../deploy/llcon-version-installer.exe
|
||||||
|
|
Loading…
Reference in a new issue