mirror of
https://github.com/GayPizzaSpecifications/padlab.git
synced 2025-08-03 21:21:33 +00:00
Initial workspace 6/1/2019 - 13/10/2019
This commit is contained in:
13
CMakeLists.txt
Normal file
13
CMakeLists.txt
Normal file
@ -0,0 +1,13 @@
|
||||
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})
|
Reference in New Issue
Block a user