diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ff9047e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/cmake-build-debug/ diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..8d4fc73 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.15) +project(BeamNG-MP-Launcher) + +set(CMAKE_CXX_STANDARD 14) + +add_executable(BeamNG-MP-Launcher main.cpp main.cpp) diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..ab2201f --- /dev/null +++ b/main.cpp @@ -0,0 +1,9 @@ +//// +//// Created by Anonymous275 on 3/3/2020. +//// + +int main(){ + + + return 0; +}