added CMakeLists basics

This commit is contained in:
DracoSense 2021-03-16 22:38:07 +03:00
parent 3c4f793e18
commit e53783bbd1

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