Kyle Benesch
Kyle Benesch
What's the status of this? Instead of hard-coding `__slots__`, shouldn't this check a collection of what to exclude so that what's excluded can be easily updated? From the discussion on...
I'll go ahead and attempt my own PR. I mostly want to fetch your test to work with.
Libtcod should already support being fetched. The CMake scripts themselves are agnostic, with libtcod searching for packages with `find_package` and will pick packages gotten with FetchContent, as far as I...
I found `OVERRIDE_FIND_PACKAGE` which seems to make them work seamlessly with `find_package`. Trying to figure out examples for libtcod's dependencies: ```cmake FetchContent_Declare( SDL2 GIT_REPOSITORY https://github.com/libsdl-org/SDL GIT_TAG release-2.26.1 OVERRIDE_FIND_PACKAGE ) FetchContent_Declare(...
Using `stb_SOURCE_DIR` makes sense in hindsight. With this it should be possible to build the library for LodePNG too, but I want these to export an alias matching the ones...
Current attempts are generating errors such as the following: ``` -- Configuring done CMake Error: install(EXPORT "libtcodTargets" ...) includes target "libtcod" which requires target "SDL2-static" that is not in any...
All of my previous examples can be ignored. [harryisgamer](https://github.com/harryisgamer) pointed out how to solve the install issue and then posted multiple working examples of setting up a libtcod project using...
I'd like to make a new release after #69 is merged.
I think this is a duplicate of #7008, or at least that issue was kept open because of this specific problem. Because of the Liskov Substitution Principle a narrowed return...
Those renderers were added in libtcod 1.8 and 1.9 respectfully. Are these versions supported by tcod-rs? If not then is there anything that can be done to libtcod to make...