From 7ac38e5b1fac5aea56404c338c49aec73a9efc4b Mon Sep 17 00:00:00 2001 From: Godot-Fye <47419231+Godot-Fye@users.noreply.github.com> Date: Sun, 19 Mar 2023 18:52:35 +0100 Subject: [PATCH] Delete CMakeLists.txt --- CMakeLists.txt | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt deleted file mode 100644 index ce42fa0..0000000 --- a/CMakeLists.txt +++ /dev/null @@ -1,20 +0,0 @@ -cmake_minimum_required (VERSION 3.8) - -project ("WayNetConverter") - -set(CMAKE_CXX_STANDARD 17) -set(CMAKE_CXX_STANDARD_REQUIRED ON) - -if (MSVC) - # /W3 - Level 3 warnings - # /MP - Multi-threaded compilation - # /permissive- - enables stricter C++ standards conformance checks - set(CMAKE_C_FLAGS "/W4 /MP /permissive-" CACHE STRING "" FORCE) - # /EHsc - C++-only exception handling semantics - # /Zc:throwingNew - let codegen assume `operator new` will never return null - # /Zc:inline - let codegen omit inline functions in object files - set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} /EHsc /Zc:throwingNew,inline" CACHE STRING "" FORCE) -endif() - - -add_subdirectory ("src")