Oleksiy Zyuz
Oleksiy Zyuz
The same issue. I built it via `cmake ..` on `../build/` path, then when I tried to `find_package(RapidJSON)` as in the guide on the main page I got ``` CMake...
I also tried this approach that is working with SFML: ``` include(FetchContent) FetchContent_Declare(RapidJSON GIT_REPOSITORY https://github.com/Tencent/rapidjson.git GIT_TAG v1.1.0) FetchContent_MakeAvailable(RapidJSON) target_link_libraries(${PROJECT_NAME} PUBLIC RapidJSON) install(TARGETS ${PROJECT_NAME}) ``` There aren't any errors but I...
Finally, I resolved the problem with auto usage RapidJSON by this article https://www.jibbow.com/posts/rapidjson-cmake/