My application has specific drivers that differ for each platform. In my json package I have:
"extraFiles": [
{
"from": "resources/${os}/drivers",
"to": "resources",
"filter": [
"**/*"
]
}
],
This ensures that he gets the right resources for the platform that I am creating and copies them to the embedded application resources. Check documents . Both ${os}and ${arch}are working in these fields.
source
share