Initial commit

This commit is contained in:
Anonymous275 2020-03-03 20:26:58 +02:00
parent 6c8fe8b0d6
commit c6cdeb961e
3 changed files with 16 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/cmake-build-debug/

6
CMakeLists.txt Normal file
View File

@ -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)

9
main.cpp Normal file
View File

@ -0,0 +1,9 @@
////
//// Created by Anonymous275 on 3/3/2020.
////
int main(){
return 0;
}