Mike Fitzgerald
Mike Fitzgerald
It'd probably be good to support the feature in its entirety, rather than picking out individual properties to add. If it helps someone get a jump on it, here are...
Here's my workaround, if it helps! Pretty annoying that there's not an easier way to get an appropriate value. ```lua -- utility function to find latest installed Windows 10 SDK...
I would double-check that. I re-run GENie as a pre-build step on every compile, and if the `.vcxproj` hasn't change, GENie doesn't even touch the file. Even if something has...
The code seems to detect and handle that case. See starting here: https://github.com/bkaradzic/GENie/blob/8c03169526fd6a92cfa77ccd8fae25347bf3037b/src/actions/vstudio/vstudio_vcxproj.lua#L1236 Do you have a case where it's not behaving as expected?
I was reading about C++/WinRT as an alternative to C++/CX while researching this issue! It sounds great, but unfortunately doesn't seem to be available for Durango, so for now I'm...
I believe that would then at least allow me to add `/ZW` to `buildoptions` to get the effect I want. Maybe at a later date I could make the transition...
For what it's worth, I've just found that Durango headers for C++/WinRT (akin to the Windows ones you linked) became available last month. So maybe this point eventually becomes moot?...
Oh nice, it looks like they're bringing that into the official Windows SDK this fall. That said, the Durango headers are incomplete and can't completely replace C++/CX, so... ¯\\\_(ツ)\_/¯ Frustrating!
I've had issues with this as well, with some strange behavior around the ".framework" extension being handled specially behind the scenes in a way that assumed it was a system...
Ah, right. So if you use my way you won't get the nice Xcode display of framework references. But it _will_ compile and link correctly. Depending on how you're doing...