xormod/CMakeLists.txt

14 lines
186 B
CMake
Raw Normal View History

2021-04-10 19:30:51 +00:00
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)