I’m trying to add the defold-gamelift module to our project. But when I try to build it I get this error:
Error in 'gamelift/ext.manifest':
Invalid lib - 'libs': 'c++' ext.manifest /Pewpew/content/gamelift line 1 Problem
Build server output:
Error in 'gamelift/ext.manifest': Invalid lib - 'libs': 'c++' ext.manifest /Pewpew/content/gamelift
Unknown Problem
The ext.manifest file looks like this:
name: "Gamelift"
platforms:
x86_64-osx:
context:
flags: ["-std=c++0x", "-stdlib=libc++"]
libs: ["c++"]
x86_64-win32:
context:
flags: ["-std=c++0x", "-stdlib=libc++"]
libs: ["c++"]
x86_64-linux:
context:
flags: ["-std=c++0x", "-stdlib=libc++"]
libs: ["c++"]
Any ideas on what’s causing this?