summaryrefslogtreecommitdiffhomepage
path: root/freetrackclient/freetrackclient/postbuild.bat
blob: 185fc705ed26135f208334fc0fe28554beee4a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@echo off
rem Copies required DLL files into output folder.

setlocal
set COPY=xcopy /D /S /C /I /H /R /Y 
set FILTER=find /v "File(s) copied"

echo parameters %1 en %2

set API_BIN=%1
set FTN_BIN=%2

%COPY% %API_BIN%\*.dll %FTN_BIN%\ | %FILTER%
exit /b 0