Changeset 4dc0969 in sasview for calculatorview/setup_exe.py
- Timestamp:
- Dec 22, 2011 10:03:30 AM (13 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 5c7cb6f
- Parents:
- 273801b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
calculatorview/setup_exe.py
r3ff72e2 r4dc0969 47 47 /> 48 48 <description>SansView</description> 49 <dependency> 50 <dependentAssembly> 51 <assemblyIdentity 52 type="win32" 53 name="Microsoft.Windows.Common-Controls" 54 version="6.0.0.0" 55 processorArchitecture="X86" 56 publicKeyToken="6595b64144ccf1df" 57 language="*" 58 /> 59 </dependentAssembly> 49 <dependency> 50 <dependentAssembly> 51 <assemblyIdentity 52 type="win32" 53 name="Microsoft.VC90.CRT" 54 version="9.0.21022.8" 55 processorArchitecture="x86" 56 publicKeyToken="1fc8b3b9a1e18e3b"> 57 </assemblyIdentity> 58 </dependentAssembly> 60 59 </dependency> 61 60 </assembly> … … 116 115 data_files.append((os.path.split(f)[0], [f])) 117 116 117 from glob import glob 118 py26MSdll = glob(r"C:\Program Files\Microsoft Visual Studio 9.0\VC\redist\x86\Microsoft.VC90.CRT\*.*") 119 # install the MSVC 9 runtime dll's into the application folder 120 #data_files += [("", py26MSdll),] 121 data_files.append(("Microsoft.VC90.CRT", py26MSdll)) 122 # ("lib\Microsoft.VC90.CRT", py26MSdll)] 123 #sys.path.append("Microsoft.VC90.CRT") 124 125 mfcdir = "C:\Python27\Lib\site-packages\pythonwin" 126 mfcfiles = [os.path.join(mfcdir, i) for i in ["mfc90.dll", "mfc90u.dll", "mfcm90.dll", "mfcm90u.dll", "Microsoft.VC90.MFC.manifest"]] 127 data_files.append(("Microsoft.VC90.MFC", mfcfiles)) 118 128 119 129 … … 123 133 packages = ['matplotlib', 'pytz','encodings', 'scipy'] 124 134 includes = ['site'] 125 excludes = []126 135 127 dll_excludes = [ 128 'libgdk_pixbuf-2.0-0.dll', 129 'libgobject-2.0-0.dll', 130 'libgdk-win32-2.0-0.dll', 131 ] 136 excludes = ['Tkinter', 'PyQt4', '_ssl', '_tkagg'] 137 138 dll_excludes = ['libgdk_pixbuf-2.0-0.dll', 139 'libgobject-2.0-0.dll', 140 'libgdk-win32-2.0-0.dll', 141 'tcl84.dll', 142 'tk84.dll', 143 'QtGui4.dll', 144 'QtCore4.dll', 145 'w9xpopen.exe', 146 'cygwin1.dll'] 132 147 133 148 target_wx_client = Target(
Note: See TracChangeset
for help on using the changeset viewer.