[pywin32-checkins] pywin32 setup.py,1.28,1.29
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2005-12-03 03:46:24
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13113 Modified Files: setup.py Log Message: * Add IObjectWithSite and IOleCommandTarget to axcontrol * Add IInputObject to shell * Remove axcontrol VC project file Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** setup.py 29 Nov 2005 02:24:15 -0000 1.28 --- setup.py 3 Dec 2005 03:46:15 -0000 1.29 *************** *** 1097,1100 **** --- 1097,1101 ---- 'adsi' : 'com/win32comext/adsi/src', 'shell' : 'com/win32comext/shell/src', + 'axcontrol' : 'com/win32comext/axcontrol/src', } *************** *** 1126,1130 **** %(adsi)s/PyIADs.cpp """ % dirs).split()), ! WinExt_win32com('axcontrol', pch_header="axcontrol_pch.h"), WinExt_win32com('axscript', dsp_file=r"com\Active Scripting.dsp", --- 1127,1140 ---- %(adsi)s/PyIADs.cpp """ % dirs).split()), ! WinExt_win32com('axcontrol', pch_header="axcontrol_pch.h", ! sources=(""" ! %(axcontrol)s/AXControl.cpp %(axcontrol)s/PyIOleControl.cpp ! %(axcontrol)s/PyIOleInPlaceSiteEx.cpp %(axcontrol)s/PyISpecifyPropertyPages.cpp ! %(axcontrol)s/PyIObjectWithSite.cpp %(axcontrol)s/PyIOleInPlaceObject.cpp ! %(axcontrol)s/PyIOleInPlaceSiteWindowless.cpp %(axcontrol)s/PyIViewObject.cpp ! %(axcontrol)s/PyIOleClientSite.cpp %(axcontrol)s/PyIOleInPlaceSite.cpp ! %(axcontrol)s/PyIOleObject.cpp %(axcontrol)s/PyIViewObject2.cpp ! %(axcontrol)s/PyIOleCommandTarget.cpp ! """ % dirs).split()), WinExt_win32com('axscript', dsp_file=r"com\Active Scripting.dsp", *************** *** 1156,1159 **** --- 1166,1170 ---- %(shell)s/PyIEnumIDList.cpp %(shell)s/PyIExtractIcon.cpp + %(shell)s/PyIInputObject.cpp %(shell)s/PyIPersistFolder.cpp %(shell)s/PyIQueryAssociations.cpp |