targets/Win32/__init__.py
author greg
Mon, 24 Nov 2008 08:57:43 +0100
changeset 271 ea7928fd07da
parent 203 cb9901076a21
child 290 3bd617ae7a05
permissions -rwxr-xr-x
add the possibility to enable or disable wxTaskbarIcon for Beremiz_service
Launch beremiz without taskbarIcon by default (incompatible with svgui plugin)
from .. import toolchain_gcc

class Win32_target(toolchain_gcc):
    extension = ".dll"
    CustomLDFLAGS = ["-shared",
                     "-Wl,--export-all-symbols",
                     "-Wl,--enable-auto-import",
                     "-Wl,--whole-archive",
                     "-Wl,--no-whole-archive",
                     "-Wl,--exclude-libs,All"]