Changeset 116 for trunk/Install/win
- Timestamp:
- Feb 3, 2018, 2:31:35 PM (7 years ago)
- Location:
- trunk/Install/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Install/win/C-evo.iss
r114 r116 70 70 Source: "{#MyAppSubDir}\Language.txt"; DestDir: "{app}"; Flags: ignoreversion 71 71 Source: "{#MyAppSubDir}\Language2.txt"; DestDir: "{app}"; Flags: ignoreversion 72 Source: "{#MyAppSubDir}\AI\lib\x86_64-win64 \StdAI.dll"; DestDir: "{app}\AI"; DestName: "StdAI-win64.dll"; Flags: ignoreversion; Check: Is64BitInstallMode73 Source: "{#MyAppSubDir}\AI\lib\i386-win32 \StdAI.dll"; DestDir: "{app}\AI"; DestName: "StdAI-win32.dll"; Flags: ignoreversion; Check: not Is64BitInstallMode72 Source: "{#MyAppSubDir}\AI\lib\x86_64-win64-Release\StdAI.dll"; DestDir: "{app}\AI"; DestName: "StdAI-win64.dll"; Flags: ignoreversion; Check: Is64BitInstallMode 73 Source: "{#MyAppSubDir}\AI\lib\i386-win32-Release\StdAI.dll"; DestDir: "{app}\AI"; DestName: "StdAI-win32.dll"; Flags: ignoreversion; Check: not Is64BitInstallMode 74 74 Source: "{#MyAppSubDir}\AI\StdAI.png"; DestDir: "{app}\AI"; Flags: ignoreversion; 75 75 Source: "{#MyAppSubDir}\AI\StdAI.ai.txt"; DestDir: "{app}\AI"; Flags: ignoreversion; -
trunk/Install/win/build.bat
r101 r116 4 4 set LAZDIR=C:\lazarus 5 5 ) 6 7 rem Build AI 8 SET PROJECTNAME=AIProject 9 SET MAIN_DLL=..\..\AI\StdAI.dll 10 SET WIN32_DLL=..\..\AI\lib\i386-win32-Release\StdAI.dll 11 SET WIN64_DLL=..\..\AI\lib\x86_64-win64-Release\StdAI.dll 12 IF EXIST %MAIN_DLL% del %MAIN_DLL% 13 IF EXIST %WIN32_DLL% del %WIN32_DLL% 14 IF EXIST %WIN64_DLL% del %WIN64_DLL% 15 16 %LAZDIR%\lazbuild.exe --lazarusdir=%LAZDIR% --build-mode="Release" --cpu=i386 --operating-system=Win32 ..\..\AI\%PROJECTNAME%.lpi 17 copy %MAIN_DLL% %WIN32_DLL% 18 %LAZDIR%\lazbuild.exe --lazarusdir=%LAZDIR% --build-mode="Release" --cpu=x86_64 --operating-system=Win64 ..\..\AI\%PROJECTNAME%.lpi 19 copy %MAIN_DLL% %WIN64_DLL% 20 21 rem Build game 6 22 SET PROJECTNAME=Integrated 7 8 23 SET MAIN_EXE=..\..\c-evo.exe 9 24 SET WIN32_EXE=..\..\lib\i386-win32-Release\c-evo.exe
Note:
See TracChangeset
for help on using the changeset viewer.