- Add empty source files for all planned modules - Add source files to CMAKE source list - Fix and extend header files so there are no errors - Create global structs in game.c and config.c
52 lines
1.2 KiB
CMake
52 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} ./)
|
|
|
|
|
|
# --- Source files ---
|
|
# Add all used source files here:
|
|
set(SOURCES
|
|
main.cpp
|
|
config.c
|
|
food.c
|
|
game.c
|
|
input.c
|
|
menu.c
|
|
render.c
|
|
snake.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() |