copy COPYRIGHT and OpenSSL Licence to Build\Release

This commit is contained in:
Mark Andrews 2015-01-29 14:36:09 +11:00
parent 1829b78a8d
commit 93a8e57df1
2 changed files with 8 additions and 1 deletions

View file

@ -81,10 +81,15 @@
if NOT Exist ..\Build mkdir ..\Build
if NOT Exist ..\Build\Debug mkdir ..\Build\Debug
echo Copying COPYRIGHT notice.
copy ..\COPYRIGHT ..\Build\Debug
@IF OPENSSL
echo Copying the OpenSSL DLL.
echo Copying the OpenSSL DLL and LICENSE.
copy @OPENSSL_DLL@ ..\Build\Debug\
copy @OPENSSL_PATH@\LICENSE ..\Build\Debug\OpenSSL-LICENSE
@END OPENSSL
@IF LIBXML2

View file

@ -40,6 +40,7 @@ if NOT Exist ..\..\Build\Debug mkdir ..\..\Build\Debug
echo Copying the ARM and the Installation Notes.
copy ..\..\COPYRIGHT ..\..\Build\Release
copy ..\..\COPYRIGHT ..\..\Build\Debug
copy ..\..\README ..\..\Build\Release
copy ..\..\HISTORY ..\..\Build\Release
copy ..\readme1st.txt ..\..\Build\Release
@ -95,6 +96,7 @@ echo Copying the OpenSSL DLL and LICENSE.
copy @OPENSSL_DLL@ ..\..\Build\Release\
copy @OPENSSL_DLL@ ..\..\Build\Debug\
copy @OPENSSL_PATH@\LICENSE ..\..\Build\Release\OpenSSL-LICENSE
copy @OPENSSL_PATH@\LICENSE ..\..\Build\Debug\OpenSSL-LICENSE
@END OPENSSL
@IF LIBXML2