X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/36fd8ec3c9408d02828d70cf05a3a60d7ed8f0dc..a703a33acb892d62668e075eca88f72cffcfe654:/wxPython/my_distutils.py diff --git a/wxPython/my_distutils.py b/wxPython/my_distutils.py index cbff3b4e99..12b4e6d09a 100644 --- a/wxPython/my_distutils.py +++ b/wxPython/my_distutils.py @@ -14,6 +14,24 @@ from distutils.ccompiler import \ class MyMSVCCompiler(MSVCCompiler): +## def __init__ (self, +## verbose=0, +## dry_run=0, +## force=0): +## MSVCCompiler.__init__(self, verbose, dry_run, force) + +## self.compile_options = [ '/nologo', +## '/Ox', +## '/MD', +## '/W3', +## '/GX', +## ] +## self.compile_options_debug = ['/nologo', '/Od', '/MDd', '/W3', '/GX', +## '/Z7', '/D_DEBUG'] + + + + ##------------------------------------------------------------ ## Override the entire compile method just to add flags to the ## RC command. There should be an easier way to do this from