Update CMake and conanfile to use RapidJSON with correct casing and adjust toolchain paths

This commit is contained in:
2026-01-03 22:25:52 +00:00
parent 192eb12474
commit 301f8f8344
3 changed files with 4 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ endif()
find_package(lua CONFIG REQUIRED)
find_package(CLI11 CONFIG REQUIRED)
find_package(rapidjson CONFIG REQUIRED)
find_package(RapidJSON CONFIG REQUIRED)
find_package(assimp CONFIG REQUIRED)
find_package(Bullet CONFIG REQUIRED)
find_package(Vorbis CONFIG REQUIRED)

View File

@@ -18,8 +18,8 @@
"CMAKE_POLICY_DEFAULT_CMP0091": "NEW",
"CMAKE_BUILD_TYPE": "Release"
},
"toolchainFile": "conan_toolchain.cmake",
"binaryDir": "/home/rewrich/Documents/GitHub/SDL3CPlusPlus"
"toolchainFile": "build/Release/generators/conan_toolchain.cmake",
"binaryDir": "build/Release"
}
],
"buildPresets": [

View File

@@ -33,3 +33,4 @@ class SDL3CppConan(ConanFile):
self.requires("assimp/6.0.2")
self.requires("glm/1.0.1")
self.requires("vorbis/1.3.7")
self.requires("rapidjson/cci.20230929")