Enabled MT compilation for all first party TUs and some third party ones too. Disabled specific warnings in third party code, started fixing warnings in first party code as well
43 lines
626 B
Lua
43 lines
626 B
Lua
project '*'
|
|
includedirs {
|
|
'yoga/yoga/'
|
|
}
|
|
|
|
group "Dependencies"
|
|
|
|
project 'yoga'
|
|
kind "StaticLib"
|
|
staticruntime "on"
|
|
warnings 'Off'
|
|
optimize 'Speed'
|
|
cppdialect "C++20"
|
|
|
|
includedirs {
|
|
'yoga/'
|
|
}
|
|
files {
|
|
'yoga/yoga/*.cpp',
|
|
'yoga/yoga/*.h',
|
|
'yoga/yoga/**/*.cpp',
|
|
'yoga/yoga/**/*.h',
|
|
}
|
|
|
|
defines {
|
|
}
|
|
|
|
-- When building any Visual Studio solution
|
|
filter { "system:windows", "action:vs*"}
|
|
flags
|
|
{
|
|
"MultiProcessorCompile",
|
|
}
|
|
|
|
filter "configurations:Debug"
|
|
runtime "Debug"
|
|
symbols "on"
|
|
|
|
filter "configurations:Release"
|
|
runtime "Release"
|
|
optimize "on"
|
|
|
|
group "" |