You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/premake5.lua

38 lines
670 B
Lua

project "spdlog"
kind "StaticLib"
language "C++"
cppdialect "C++11"
staticruntime "off"
targetdir ("bin/" .. outputdir .. "/%{prj.name}")
objdir ("bin-int/" .. outputdir .. "/%{prj.name}")
defines
{
"SPDLOG_COMPILED_LIB"
}
files
{
"spdlog/**.h",
"spdlog/**.cpp",
"src/**.cpp"
}
includedirs
{
"include"
}
filter "system:windows"
systemversion "latest"
filter "configurations:Debug"
runtime "Debug"
symbols "on"
filter "configurations:Release"
runtime "Release"
optimize "on"
--staticruntime "on"