targets/Win32/__init__.py
author Edouard Tisserant
Mon, 23 Jan 2012 15:11:49 +0100
changeset 668 048f5a923c86
parent 642 cd7ccbbbf471
child 685 2db8b87016a0
permissions -rwxr-xr-x
Better name for python plugin
from ..toolchain_gcc import toolchain_gcc

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