Addid UML

This commit is contained in:
ProgramSnail 2021-03-21 14:13:02 +03:00
parent e53783bbd1
commit a92cbabf82
35 changed files with 3619 additions and 1 deletions

7
CMakeLists.txt Normal file → Executable file
View file

@ -2,9 +2,14 @@ cmake_minimum_required(VERSION 3.10)
project(Game)
find_package(Curses REQUIRED)
include_directories(${CURSES_INCLUDE_DIR})
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
set(SOURCES main.cpp)
add_executable(Game ${SOURCS})
add_executable(Game ${SOURCES})
target_link_libraries(Game ${CURSES_LIBRARIES})