Duncan Jones
Duncan Jones
Thanks for the swift and detailed response. I'll take a look at the command you suggest, but in the meantime I'll explain my use case. We have existing C libraries...
Thanks @xlab. Looks like I can take some fairly heavy inspiration from your project. If I get something working, I'll share it on GitHub and I'll let you know.
Might be worth splitting this into smaller PRs that can be more easily reviewed? The LANG-341 stuff was pretty much ready to go last time it was reviewed, so splitting...
Avoiding a mixture of white-space and code changes is also welcome :-)
I also had this issue, but it was fixed when I updated my revel command with: ``` go get -u github.com/revel/cmd ```
The issue is more significant when there are descenders: 
I notice the line height is set differently depending if one calls `LoadFontFace` or `SetFontFace`. If we change `LoadFontFace` to look like this: ```go func (dc *Context) LoadFontFace(path string, points...
I have the same issue. I installed `libcpprest-dev` on Ubuntu 18.04 and have the following in my CMakeLists.txt: ``` find_package(cpprestsdk REQUIRED) ``` I get a similar error: ``` CMake Error...
I now understand the problem. When installing from the Ubuntu packages, the `config.cmake` file ends up here: ``` /usr/lib/x86_64-linux-gnu/cmake/cpprestsdk-config.cmake ``` Unfortunately, this doesn't match any of the paths that cmake...
I solved it by following the instructions [in this StackOverflow answer](https://stackoverflow.com/a/52194702/474189). (I used `4.2` for the Swift version). Quoting that answer: > When the iOS part of a plugin is...