beremiz

Enhanced wxGlade GUI creation.

2009-01-19, etisserant
d962b3d503b5
file isExecutable
Enhanced wxGlade GUI creation.
- Frame object name now have same name as in editor
- Closing the frame replace object by None, warn user, and recreate frame
from .. import toolchain_gcc
class Win32_target(toolchain_gcc):
extension = ".dll"
def getBuilderLDFLAGS(self):
return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared",
"-Wl,--export-all-symbols",
"-Wl,--enable-auto-import",
"-Wl,--whole-archive",
"-Wl,--no-whole-archive",
"-Wl,--exclude-libs,All"]