mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2026-01-03 07:18:14 +00:00
Addid UML
This commit is contained in:
parent
e53783bbd1
commit
a92cbabf82
35 changed files with 3619 additions and 1 deletions
7
CMakeLists.txt
Normal file → Executable file
7
CMakeLists.txt
Normal file → Executable 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})
|
||||
Loading…
Add table
Add a link
Reference in a new issue