From 9f9a9e490cfe064ab99b0a496cc526aa11f651db Mon Sep 17 00:00:00 2001 From: Nathan Chitnis <162835486+MasterDevelepor@users.noreply.github.com> Date: Tue, 12 Mar 2024 17:45:39 -0400 Subject: [PATCH] Turned on static runtime + added gitignore (Merge PR #1) Add .gitignore + turn off static runtime --- .gitignore | 4 ++++ premake5.lua | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2f9d10f..40eef97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ build/ /tags /bazel-* +bin +bin-int +yaml-cpp.vcxproj +yaml-cpp.vcxproj.filters \ No newline at end of file diff --git a/premake5.lua b/premake5.lua index 8e833d9..6f86244 100644 --- a/premake5.lua +++ b/premake5.lua @@ -21,13 +21,13 @@ project "yaml-cpp" filter "system:windows" systemversion "latest" cppdialect "C++17" - staticruntime "On" + staticruntime "off" filter "system:linux" pic "On" systemversion "latest" cppdialect "C++17" - staticruntime "On" + staticruntime "off" filter "configurations:Debug" runtime "Debug"