Tools
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13136 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
import sys, os, string
|
import sys, os, string, glob
|
||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
from distutils.file_util import copy_file
|
from distutils.file_util import copy_file
|
||||||
from distutils.dir_util import mkpath
|
from distutils.dir_util import mkpath
|
||||||
@@ -832,6 +832,19 @@ if not GL_ONLY and BUILD_DLLWIDGET:
|
|||||||
wxpExtensions.append(ext)
|
wxpExtensions.append(ext)
|
||||||
|
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------
|
||||||
|
# Tools and scripts
|
||||||
|
#----------------------------------------------------------------------
|
||||||
|
|
||||||
|
TOOLS = [("wxPython/tools", glob.glob("tools/*.py")),
|
||||||
|
("wxPython/tools/XRCed", glob.glob("tools/XRCed/*.py") +
|
||||||
|
glob.glob("tools/XRCed/*.xrc") +
|
||||||
|
["tools/XRCed/CHANGES",
|
||||||
|
"tools/XRCed/TODO",
|
||||||
|
"tools/XRCed/README"]),
|
||||||
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------
|
#----------------------------------------------------------------------
|
||||||
@@ -858,6 +871,8 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
ext_package = PKGDIR,
|
ext_package = PKGDIR,
|
||||||
ext_modules = wxpExtensions,
|
ext_modules = wxpExtensions,
|
||||||
|
|
||||||
|
##data_files = TOOLS,
|
||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
@@ -874,6 +889,7 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
ext_package = PKGDIR,
|
ext_package = PKGDIR,
|
||||||
ext_modules = wxpExtensions,
|
ext_modules = wxpExtensions,
|
||||||
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user