mirror of
https://github.com/ProgramSnail/snake_2024.git
synced 2026-01-07 20:24:58 +00:00
initial commit
This commit is contained in:
parent
110f4a440c
commit
f86c1a22ac
5 changed files with 279 additions and 1 deletions
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
# You are free to modify this file
|
||||
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
project(game)
|
||||
find_package(X11 REQUIRED)
|
||||
set(CMAKE_CONFIGURATION_TYPES "Debug" "Release")
|
||||
file(GLOB SRC *.cpp)
|
||||
add_executable(game ${SRC})
|
||||
target_link_libraries(game m X11)
|
||||
Loading…
Add table
Add a link
Reference in a new issue