initial commit

This commit is contained in:
imp5imp5 2022-05-12 12:46:58 +03:00 committed by a.borisov
parent 110f4a440c
commit f86c1a22ac
5 changed files with 279 additions and 1 deletions

10
CMakeLists.txt Normal file
View 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)