aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: 89a43d303bd604ff2febdf1c0bee01df72d1bd9e (plain)
1
2
3
4
5
6
7
cmake_minimum_required(VERSION 2.6)
project(Asteroids)

find_package(SDL2 REQUIRED)
include_directories(${SDL2_INCLUDE_DIRS})
add_executable(Asteroids main.c)
target_link_libraries(Asteroids ${SDL2_LIBRARIES} m)