From a8f4056325954d190162f2c48796db6b541ee335 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan Date: Sun, 21 Aug 2022 13:11:21 -0500 Subject: [PATCH] feat: add CMake support --- .gitignore | 3 +++ CMakeLists.txt | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 CMakeLists.txt diff --git a/.gitignore b/.gitignore index 2d6a528..e6232f5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,5 @@ *.exe bin/* +cmake-build-debug/* +.idea/* + diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3421591 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.12) +project(modlimitfix) + +set(CMAKE_CXX_STANDARD 17) + +add_executable(modlimitfix + main.cpp)