snake-pp/CMakeLists.txt
jonny_jr9 3e40be47cf Update module structure: Add map.c
=> global config and game struct changed
=> some functions were dropped/moved
- Outsourced data types and functions to map.c / map.h
- Update function and module diagram
- Adjust custom data types in source code
2023-11-10 12:46:00 +01:00

53 lines
1.2 KiB
CMake

cmake_minimum_required(VERSION 3.7)
project(Snake)
#--- SDL2 location on Windows ---
if(WIN32)
# Specify downloaded SDL2 library folder location
set(SDL2_FOLDER "${CMAKE_SOURCE_DIR}/SDL2/")
set(SDL2_INCLUDE_DIRS "${SDL2_FOLDER}/include")
set(SDL2_LIBS "${SDL2_FOLDER}/lib/x64/SDL2.lib")
set(SDL2_DLLS "${SDL2_FOLDER}/lib/x64/SDL2.dll")
set(SDL2_DIR "${SDL2_FOLDER}/cmake/")
# On Linux, the library is found automatically if installed
endif()
# --- Locate SDL2 ---
# Uses SDL2_DIR on Windows, on Linux it's found automatically
find_package(SDL2 REQUIRED)
#--- Include directories ---
include_directories(${SDL2_INCLUDE_DIRS} ./include ./src)
# --- Source files ---
# Add all used source files here:
set(SOURCES
src/main.cpp
src/config.c
src/food.c
src/game.c
src/input.c
src/menu.c
src/render.c
src/snake.c
src/map.c
)
add_executable(Snake ${SOURCES})
target_link_libraries(Snake ${SDL2_LIBRARIES})
# --- Copy SDL2 DLLs to the output folder on Windows ---
if(WIN32)
foreach(DLL ${SDL2_DLLS})
add_custom_command(TARGET Snake POST_BUILD COMMAND
${CMAKE_COMMAND} -E copy_if_different ${DLL} $<TARGET_FILE_DIR:Snake>)
endforeach()
endif()