Jonathan Vannier
Jonathan Vannier
I have one and it works just fine with all 3&4 finger gestures.
Apple still calls it the "Magic Trackpad" but you can notice it with the new packaging (braided lightning cable, etc.) and also the return of the black edition alongside the...
Do you intend to build the library itself as well ? (By the fact you want to use the provided headers I must assume yes). To me this is more...
What CPM does is fetching the repository and loading its CMakeLists.txt if present. You'd get the exact same behavior cloning it somewhere on your computer and using `add_subdirectory` on it....
Yes this will likely run everytime you configure CMake, I gave it a quick go and came up with this: ```cmake CPMAddPackage(GITHUB_REPOSITORY libsdl-org/SDL GIT_TAG main OPTIONS "SDL2_DISABLE_INSTALL TRUE") if (SDL_ADDED)...
> I've tried the above, but unfortunately it doesn't work... it still only copies the files over when building, not when configuring. This is the intended behavior though. While this...
Correct me if I'm wrong, but I'm pretty sure ImGui does not come with any project file using any build system whatsoever. Given that, you'll likely have to create the...
What do you mean by a copy ? All it does is essentially resolve the absolute URL from the relative one you pass into it, the rest of the process...
Hi, and thanks for you comment. Performance-wise, calling git on my system takes about 12-14ms (`time git remote`). We could reduce the amount of calls to git by doing a...
Added said cache system, the resolved relative URLs are stored in internal cache variables titled "CPM_PACKAGE_name_RESOLVED_URL". Let me know what you think.