-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmake.bat
More file actions
26 lines (20 loc) · 683 Bytes
/
make.bat
File metadata and controls
26 lines (20 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
@echo off
if NOT "%FLEXDIR%" == "" (
set "PATH=%PATH%;%FLEXDIR%"
)
if NOT "%BISONDIR%" == "" (
set "PATH=%PATH%;%BISONDIR%"
)
mkdir bin
mkdir msvc10
del /Q bin\*
cd msvc10
%QTDIR%\bin\qmake -spec win32-msvc2010 -tp vc -r ..
call "%SDK_DIR%\bin\SetEnv.cmd" /x86 /Debug
msbuild lasm-gui\lasm-gui.vcxproj /nologo /verbosity:m /p:Configuration=Debug
msbuild src\src.vcxproj /nologo /verbosity:m /p:Configuration=Debug
call "%SDK_DIR%\bin\SetEnv.cmd" /x86 /Release
msbuild lasm-gui\lasm-gui.vcxproj /nologo /verbosity:m /p:Configuration=Release
msbuild src\src.vcxproj /nologo /verbosity:m /p:Configuration=Release
copy lasm-gui\bin\*.exe ..\bin\
copy src\bin\*.exe ..\bin\