-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspdlog.lua
More file actions
37 lines (31 loc) · 801 Bytes
/
spdlog.lua
File metadata and controls
37 lines (31 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
project "spdlog"
language "C++"
kind "StaticLib"
systemversion "latest"
location("%{wks.location}/"..cfg_locations["spdlog"])
targetdir("%{wks.location}/bin/"..cfg_outdirTemplate)
objdir("%{wks.location}/bin-int/"..cfg_outdirTemplate)
defines {
"SPDLOG_COMPILED_LIB"
}
includedirs {
"%{prj.location}/include/"
}
files {
"%{prj.location}/src/async.cpp",
"%{prj.location}/src/cfg.cpp",
"%{prj.location}/src/color_sinks.cpp",
"%{prj.location}/src/file_sinks.cpp",
"%{prj.location}/src/fmt.cpp",
"%{prj.location}/src/spdlog.cpp",
"%{prj.location}/src/stdout_sinks.cpp"
}
filter "configurations:Debug*"
symbols "On"
optimize "Off"
filter "configurations:Release*"
symbols "On"
optimize "Debug"
filter "configurations:Dist*"
symbols "Off"
optimize "Speed"