aboutsummaryrefslogtreecommitdiff
path: root/project/Win32BuildSetup
diff options
context:
space:
mode:
authorwiromare <wiromare@gmail.com>2016-08-02 09:35:36 +0200
committerwiromare <wiromare@gmail.com>2016-08-02 10:01:48 +0200
commitcb7676927fcfe955a96f874c5f78ca7c5437b99c (patch)
treeac72f907090f11c40c8f0d2878c987d52233ec85 /project/Win32BuildSetup
parent8cd7744eab3974184a2e866c0078dc92ef05a09e (diff)
BuildSetup: don't copy the contents of \system in \BUILD_WIN32\application
Diffstat (limited to 'project/Win32BuildSetup')
-rw-r--r--project/Win32BuildSetup/BuildSetup.bat5
1 files changed, 3 insertions, 2 deletions
diff --git a/project/Win32BuildSetup/BuildSetup.bat b/project/Win32BuildSetup/BuildSetup.bat
index 6d8c3ce57b..de41eda95b 100644
--- a/project/Win32BuildSetup/BuildSetup.bat
+++ b/project/Win32BuildSetup/BuildSetup.bat
@@ -1,4 +1,4 @@
-@ECHO OFF
+@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
REM setup all paths
SET cur_dir=%CD%
@@ -252,7 +252,7 @@ set WORKSPACE=%CD%\..\..
xcopy dependencies\*.* BUILD_WIN32\application /Q /I /Y /EXCLUDE:exclude.txt > NUL
xcopy ..\..\addons BUILD_WIN32\application\addons /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
- xcopy ..\..\system\*.dll BUILD_WIN32\application /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
+ xcopy ..\..\system\*.dll BUILD_WIN32\application /Q /I /Y > NUL
xcopy ..\..\system BUILD_WIN32\application\system /E /Q /I /Y /EXCLUDE:exclude.txt+exclude_dll.txt > NUL
xcopy ..\..\media BUILD_WIN32\application\media /E /Q /I /Y /EXCLUDE:exclude.txt > NUL
@@ -294,6 +294,7 @@ set WORKSPACE=%CD%\..\..
TITLE %APP_NAME% for Windows Build Script
IF EXIST exclude.txt del exclude.txt > NUL
+ IF EXIST exclude_dll.txt del exclude_dll.txt > NUL
del /s /q /f BUILD_WIN32\application\*.so > NUL
del /s /q /f BUILD_WIN32\application\*.h > NUL
del /s /q /f BUILD_WIN32\application\*.cpp > NUL