sdltextinput/CMakeLists.txt

11 lines
282 B
CMake
Raw Normal View History

2024-12-21 16:09:26 +11:00
cmake_minimum_required(VERSION 3.10)
project(SDLExample)
find_package(SDL2 REQUIRED)
find_package(SDL2_ttf REQUIRED)
include_directories(${SDL2_INCLUDE_DIRS} ${SDL2_TTF_INCLUDE_DIRS})
add_executable(program src/main.cpp)
target_link_libraries(program ${SDL2_LIBRARIES} SDL2_ttf)