targets/Win32/__init__.py
author laurent
Wed, 12 Sep 2012 01:17:01 +0200
changeset 828 319dac4c4fd3
parent 685 2db8b87016a0
child 1279 0eb9f8af479f
permissions -rwxr-xr-x
Fix debug of Action and Transition defined in FBD and LD using Viewer
from ..toolchain_gcc import toolchain_gcc

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