Insignificant changes
This commit is contained in:
parent
91ea4a1aed
commit
e6d0cd2235
@ -21,7 +21,9 @@ clang-analyzer-*,
|
|||||||
-modernize-avoid-c-arrays,
|
-modernize-avoid-c-arrays,
|
||||||
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
|
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,
|
||||||
-readability-named-parameter,
|
-readability-named-parameter,
|
||||||
-cert-env33-c
|
-cert-env33-c,
|
||||||
|
-readability-identifier-length,
|
||||||
|
-cppcoreguidelines-pro-type-union-access
|
||||||
'
|
'
|
||||||
|
|
||||||
|
|
||||||
|
18
premake5.lua
18
premake5.lua
@ -63,17 +63,19 @@ function boilerplate()
|
|||||||
buildoptions({ "-Wno-unused-parameter", "-fms-extensions" })
|
buildoptions({ "-Wno-unused-parameter", "-fms-extensions" })
|
||||||
end
|
end
|
||||||
|
|
||||||
|
buildoptions({"-fno-fast-math"})
|
||||||
|
|
||||||
filter("configurations:Debug")
|
filter("configurations:Debug")
|
||||||
defines({ "DEBUG", "TRACE", "P_DEBUG" })
|
defines({ "DEBUG", "TRACE", "P_DEBUG" })
|
||||||
symbols("On")
|
symbols("On")
|
||||||
buildmessage("Building %{prj.name} in debug mode")
|
buildmessage("Building %{prj.name} in debug mode")
|
||||||
|
|
||||||
filter("configurations:Release")
|
filter("configurations:Release")
|
||||||
defines({ "NDEBUG", "P_RELEASE" })
|
defines({ "NDEBUG", "P_RELEASE" })
|
||||||
linktimeoptimization("On")
|
linktimeoptimization("On")
|
||||||
optimize("On")
|
optimize("On")
|
||||||
intrinsics("On")
|
intrinsics("On")
|
||||||
buildmessage("Building %{prj.name} in release mode")
|
buildmessage("Building %{prj.name} in release mode")
|
||||||
|
|
||||||
filter({})
|
filter({})
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user