Revision: 5847
http://winmerge.svn.sourceforge.net/winmerge/?rev=5847&view=rev
Author: kimmov
Date: 2008-08-21 16:54:17 +0000 (Thu, 21 Aug 2008)
Log Message:
-----------
Buildscript: build heksedit.dll and copy it to distribution folder.
Modified Paths:
--------------
trunk/Tools/Scripts/create_release.py
Modified: trunk/Tools/Scripts/create_release.py
===================================================================
--- trunk/Tools/Scripts/create_release.py 2008-08-21 15:44:02 UTC (rev 5846)
+++ trunk/Tools/Scripts/create_release.py 2008-08-21 16:54:17 UTC (rev 5847)
@@ -121,6 +121,9 @@
if os.path.exists('build/scew'):
shutil.rmtree('build/scew', True)
+ if os.path.exists('build/heksedit'):
+ shutil.rmtree('build/heksedit', True)
+
if os.path.exists('build/Manual'):
shutil.rmtree('build/Manual',True)
@@ -212,6 +215,10 @@
#print solution_path
call([vs_cmd, solution_path, '/rebuild', 'MinSizeRel'], shell=True)
+ print 'Build heksedit library...'
+ solution_path = os.path.join(cur_path, 'Externals/heksedit/heksedit.vcproj')
+ call([vs_cmd, solution_path, '/rebuild', 'Release'], shell=True)
+
def build_targets():
"""Builds all WinMerge targets."""
@@ -293,6 +300,7 @@
shutil.copy('build/pcre/pcre.dll', bin_folder)
shutil.copy('build/expat/libexpat.dll', bin_folder)
+ shutil.copy('build/heksedit/heksedit.dll', bin_folder)
copy_po_files(lang_folder)
filter_orig = os.path.join(dist_src_folder, 'Filters')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|