Works, builds both native linux and cross-compiles mingw-w64 variants. Need to work out copying appropriate dlls into the mkxp runtime folder. Signed-off-by: Marty Plummer <ntzrmtthihu777@gmail.com>
33 lines
1.2 KiB
Text
33 lines
1.2 KiB
Text
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
<assemblyIdentity type="win32"
|
|
name="MKXP.Application"
|
|
version="2.0.0.0"
|
|
processorArchitecture="@ARCH@" />
|
|
<description>MKXP.Application</description>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity type="win32"
|
|
name="Microsoft.Windows.Common-Controls"
|
|
version="6.0.0.0"
|
|
language="*"
|
|
processorArchitecture="*"
|
|
publicKeyToken="6595b64144ccf1df" />
|
|
</dependentAssembly>
|
|
</dependency>
|
|
<dependency>
|
|
<dependentAssembly>
|
|
<assemblyIdentity type="win32"
|
|
name="runtime"
|
|
version="1.0.0.0"
|
|
language="*"
|
|
processorArchitecture="@ARCH@" />
|
|
</dependentAssembly>
|
|
</dependency>
|
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
<security>
|
|
<requestedPrivileges>
|
|
<requestedExecutionLevel level="asInvoker" uiAccess="false" />
|
|
</requestedPrivileges>
|
|
</security>
|
|
</trustInfo>
|
|
</assembly>
|