diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..ace5b3c --- /dev/null +++ b/CMakeLists.txt @@ -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}) \ No newline at end of file