mirror of https://github.com/gabime/spdlog.git
forked and add premake
parent
7e635fca68
commit
d694ec6b4e
@ -0,0 +1,37 @@
|
||||
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"
|
Loading…
Reference in New Issue