mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2025-12-28 12:28:43 +00:00
added CMakeLists basics
This commit is contained in:
parent
3c4f793e18
commit
e53783bbd1
1 changed files with 10 additions and 0 deletions
10
CMakeLists.txt
Normal file
10
CMakeLists.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
cmake_minimum_required(VERSION 3.10)
|
||||
|
||||
project(Game)
|
||||
|
||||
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
|
||||
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)
|
||||
|
||||
set(SOURCES main.cpp)
|
||||
|
||||
add_executable(Game ${SOURCS})
|
||||
Loading…
Add table
Add a link
Reference in a new issue