Update Premake Filters and Add Executable Permission to Linux Scripts

This commit is contained in:
GuilhermeWerner
2021-01-21 16:20:29 -03:00
parent 46f72f3248
commit 38f5e4130f
3 changed files with 8 additions and 8 deletions

0
GenerateProjectFiles.sh Normal file → Executable file
View File

0
Premake/Linux/premake5 Normal file → Executable file
View File

View File

@ -43,12 +43,12 @@ project "Cpp"
"Library.dll.lib"
}
filter "configurations:debug"
filter { "system:windows", "configurations:debug" }
runtime "Debug"
buildoptions "/MDd"
symbols "on"
filter "configurations:release"
filter { "system:windows", "configurations:release" }
runtime "Release"
buildoptions "/MD"
optimize "on"
@ -86,12 +86,12 @@ project "C"
"Library.dll.lib"
}
filter "configurations:debug"
runtime "Debug"
filter { "system:windows", "configurations:debug" }
runtime "Debug"
buildoptions "/MDd"
symbols "on"
symbols "on"
filter "configurations:release"
runtime "Release"
filter { "system:windows", "configurations:release" }
runtime "Release"
buildoptions "/MD"
optimize "on"
optimize "on"