I should have put in a snippet... (I am trying to use setup.py, but I must be 
failing)

...(setup.py)


import sys

from cx_Freeze import setup, Executable

base = None

executables = [
   Executable("gssim.py"),
]


setup(
        name = "gssim",
        version = "0.1",
        description = "Sample cx_Freeze wxPython script",
        options = {'build_exe':{"bin-includes": ["libgcc_s_sjlj-1.dll"]}},
        executables = executables)

...


Any ideas?

-----Original Message-----
From: Anthony Tuininga [mailto:[email protected]]
Sent: Wed 12/9/2009 1:52 PM
To: primary discussion list for use and development of cx_Freeze
Subject: Re: [cx-freeze-users] bin-includes option for build_exe
 
Its not supported on the command line, only in setup.py. I assumed
that something complicated like that would be best retained in a
configuration file so I didn't see the need to implement it on the
command line. I am ready to be convinced otherwise, though. :-)

Anthony

On Wed, Dec 9, 2009 at 9:47 AM, Brown, Floyd <[email protected]> wrote:
> Is "bin-includes" supported? I see it in the cx_freeze code, but I get a
> "unknown option" when added so I can include some required DLL's.
>
> Thanks
>
>
>
> ------------------------------------------------------------------------------
> Return on Information:
> Google Enterprise Search pays you back
> Get the facts.
> http://p.sf.net/sfu/google-dev2dev
>
> _______________________________________________
> cx-freeze-users mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/cx-freeze-users
>
>

------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users






------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
_______________________________________________
cx-freeze-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/cx-freeze-users

Reply via email to