mirror of
https://github.com/ProgramSnail/rts_game_backend.git
synced 2025-12-24 18:38:43 +00:00
10 lines
No EOL
212 B
CMake
10 lines
No EOL
212 B
CMake
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}) |