juj
juj
Having more directories means having more things to have to remember ("Did I have to `#include "Math/Foo.h"` or `#include "Logging/Foo.h"` or something else?"), and people have requested to not use...
Try creating another bat file in that directory, with the contents ``` cmake -DMATH_AVX=1 -DMATH_FMA3=1 -G "Visual Studio 15 2017 Win64" .. ``` That should create a static library.
By leaking, do you mean actually leaking allocated raw memory pointers? Or leaking network memory sockets after MessageConnections are deleted? Do the MessageConnections properly clean up when all dialogs are...
Thanks for reporting. Didn't yet have time to check into too close detail, but I think that `MergeSkylines()` can actually merge a skyline at most twice, since it is called...
Yeah, that is the way we need to handle this. We do not want to require developers to author web elements like buttons on the page to do pointerlock and...
https://github.com/kripken/emscripten/commit/b71f0def47d8ffbbaffcdaccba20713db5f0f5d1
I started implementing a CMake build path, see #7 and this wiki page: https://github.com/gsathya/SDL-emscripten/wiki/Building-with-CMake After that pull request, the CMake config goes through, but the build halts with the following...
Looks like CMake config path includes all the files in the atomics folder, most likely the `configure` path doesn't include those for Emscripten at all? Perhaps we should add dummy...
I've updated the pull request at #7 that is a fist good step configuring via CMake. It should include all the relevant bits. To be able to use #7, the...
Here are the input files: [a.zip](https://github.com/google/closure-compiler/files/14524992/a.zip)  `C3 A1` is `11000011 10100001`, which is of form `110xxxxx 10yyyyyy`, i.e. a leading code point and a continution code point. See e.g....