targets/Win32/__init__.py
author Edouard Tisserant
Thu, 16 May 2013 14:47:57 +0900
changeset 1155 412e30abf7e5
parent 685 2db8b87016a0
child 1279 0eb9f8af479f
permissions -rwxr-xr-x
Extended WxGlade HMI with automatic mapping of event handlers declared in wxglade editor
from ..toolchain_gcc import toolchain_gcc

class Win32_target(toolchain_gcc):
    extension = ".dll"
    def getBuilderLDFLAGS(self):
        return toolchain_gcc.getBuilderLDFLAGS(self) + ["-shared", "-lwinmm"]