Skip to content

Commit

Permalink
Refs #4333. Add Windows install rule for PythonInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Jan 6, 2012
1 parent ecc6f3b commit fe65f73
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Code/Mantid/Installers/WinInstaller/generateWxs.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,9 @@ def createPropertiesFile(filename):
addFileV('MantidKernel','MKern.dll','MantidKernel.dll',MANTIDRELEASE + '/MantidKernel.dll',MantidDlls)
addFileV('MantidNexusCPP','MNxsCPP.dll','MantidNexusCPP.dll',MANTIDRELEASE + '/MantidNexusCPP.dll',MantidDlls)

# New-style Python API
mantidpy = addCompList('mtdpymod',MANTIDRELEASE + '/mantid','mantid',binDir, exclude_suffix=['.pyc'])[0]

# Add qt API library
addFileV('MantidQtAPI','MQTAPI.dll','MantidQtAPI.dll',MANTIDRELEASE + '/MantidQtAPI.dll',MantidDlls)
addFileV('MantidWidgets','MWid.dll','MantidWidgets.dll',MANTIDRELEASE + '/MantidWidgets.dll',MantidDlls)
Expand Down Expand Up @@ -749,6 +752,7 @@ def createPropertiesFile(filename):
addCRef('MantidDLLs',MantidExec)
addCRefs(pythonDLLs, MantidExec)
addCRefs(pythonLib,MantidExec)
addCRefs(mantidpy, MantidExec)
addCRefs(pythonScripts,MantidExec)
addCRefs(mantidplot,MantidExec)
addCRef('Plugins',MantidExec)
Expand Down

0 comments on commit fe65f73

Please sign in to comment.