My library with useful drawing features on SDL
Clone the repository. In the repository folder write this:
cmake .
sudo make installNow you`re ready to use this library in your projects
To use this library with cmake, you need to write this commands in right places of your CMakeLists.txt:
find_package(DrawingFeatures REQUIRED)
target_include_directories(Balls PRIVATE ${DrawingFeatures_INCLUDE_DIRS})
target_link_libraries(Balls PRIVATE DrawingFeatures::DrawingFeatures)TODO: do an example folder right in library