Building a DLL via Maven with mojo-native
- by graham.reeds
I can build a simple dll consisting of a source file, a header file and a definition but now I am progressing beyond a simple toy dll and working towards something more real (ie: more complex).
The DLL I am trying to compile has 2 source files, 2 headers and the dreaded stdafx pair.
To compile normally you would use /Yc for the pch and /Yu to use it.
How do you specify that with in the constraints of mojo-native's compiler options?