cmake_minimum_required(VERSION 3.10) project(DingusComputer) find_package(SDL2 REQUIRED) include_directories(${SDL2_INCLUDE_DIRS}) add_executable(dinguser src/main.cpp) target_link_libraries(dinguser ${SDL2_LIBRARIES})