Automatic module name variable

Any way to automate this:

// BridgingHeader.h
#import "ProductName-Swift.h" // should be module name here

wanted something like this:

// BridgingHeader.h
#import "$(PRODUCT_NAME)-Swift.h"

Or, maybe there's a way to generate this header as part of the build process?

// BridgingHeader.h
#import "AutogeneratedHeader.h"
// AutogeneratedHeader.h
// autogenerated file, do not change
#import "ProperProductName-Swift.h"