Undefined identifiers from SDL graphic library

I am trying to install on my VS Code the SDL (https://www.libsdl.org), cause I am going through book "Will_Briggs_C++20_for_Lazy_Programmers_Quick,_Easy,_and_Fun_C++" which uses SDL. However in book dont use vs code, so I am trying to manage how to install by myself. I followed Youtube Tutorials (example: https://youtu.be/jUZZC9UXyFs), but got trouble – I included library, added SDL2.dll… Read More Undefined identifiers from SDL graphic library

CMake Config is Found, but I Cannot Link the Libraries: SDL2_image

I am trying to link against SDL2_image. When I installed sdl2_image, my system was provided with a: /usr/lib/cmake/SDL2_image/sdl2_iamge-config.cmake I am able to verify that my CMakeLists.txt does indeed find this config, however, I cannot seem to use the _INCLUDE_DIRS or _LIBRARIES variable as I normally would. Here is an example of my config: find_package(SDL2 REQUIRED)… Read More CMake Config is Found, but I Cannot Link the Libraries: SDL2_image