xormod/CMakeLists.txt

14 lines
186 B
CMake

cmake_minimum_required(VERSION 3.18)
project(xormod C)
find_package(SDL2)
add_executable(xormod
"xormod.c"
"font.c"
"EGA8x8.c"
)
target_link_libraries(xormod SDL2::SDL2)