mirror of
https://github.com/GayPizzaSpecifications/padlab.git
synced 2025-08-03 13:11:32 +00:00
14 lines
353 B
CMake
14 lines
353 B
CMake
|
cmake_minimum_required(VERSION 3.1)
|
||
|
set(PROJECT analogue)
|
||
|
set(SOURCES analogue.c)
|
||
|
|
||
|
project(${PROJECT} C)
|
||
|
set(CMAKE_C_STANDARD 11)
|
||
|
find_package(SDL2 REQUIRED)
|
||
|
add_definitions(${SDL2_CFLAGS})
|
||
|
include_directories(${SDL2_INCLUDE_DIRS})
|
||
|
set(LIBRARIES ${SDL2_LIBRARIES} m)
|
||
|
|
||
|
add_executable(${PROJECT} ${SOURCES})
|
||
|
target_link_libraries(${PROJECT} ${LIBRARIES})
|