I have installed a library (SDL) with the following command:
cmake --build . --target install
I read in the documentation that installed packages are going to be registered in the CMAKE_SYSTEM_PREFIX_PATH
.
But when I print out the variable it is empty.
Currently I am using Windows, and I read online that I should register the installation path in the registry, but it did not help at all.
How can I find, for example, SDL with find_package()?