cmake_minimum_required(VERSION 3.10)
project(PaintPP)
set(CMAKE_CXX_STANDARD 17)
find_package(SFML 2.5 COMPONENTS graphics window system REQUIRED)
add_executable(PaintPP
main.cpp
paint_core.cpp
)
target_link_libraries(PaintPP
sfml-graphics
sfml-window
sfml-system
)