Skip to content

Commit a004938

Browse files
committed
Added missing _DEBUG macro
1 parent c081042 commit a004938

20 files changed

Lines changed: 20 additions & 20 deletions

File tree

Dependencies/ImGui/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ project "ImGui"
2121
}
2222

2323
filter { "configurations:Debug" }
24-
defines { "DEBUG" }
24+
defines { "DEBUG", "_DEBUG" }
2525
symbols "On"
2626

2727
filter { "configurations:Release" }

Dependencies/assimp/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ project 'assimp'
134134
}
135135

136136
filter { "configurations:Debug" }
137-
defines { "DEBUG" }
137+
defines { "DEBUG", "_DEBUG" }
138138
symbols "On"
139139

140140
filter { "configurations:Release" }

Dependencies/bullet3/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ project "bullet3"
2424
}
2525

2626
filter { "configurations:Debug" }
27-
defines { "DEBUG" }
27+
defines { "DEBUG", "_DEBUG" }
2828
symbols "On"
2929

3030
filter { "configurations:Release" }

Dependencies/glad/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project "glad"
1717
}
1818

1919
filter { "configurations:Debug" }
20-
defines { "DEBUG" }
20+
defines { "DEBUG", "_DEBUG" }
2121
optimize "On"
2222

2323
filter { "configurations:Release" }

Dependencies/glfw/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ project "glfw"
4040
filter {}
4141

4242
filter { "configurations:Debug" }
43-
defines { "DEBUG" }
43+
defines { "DEBUG", "_DEBUG" }
4444
symbols "On"
4545

4646
filter { "configurations:Release" }

Dependencies/lua/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project "lua"
88
objdir (objoutdir .. "%{cfg.buildcfg}/%{prj.name}")
99

1010
filter { "configurations:Debug" }
11-
defines { "DEBUG" }
11+
defines { "DEBUG", "_DEBUG" }
1212
optimize "On"
1313
symbols "Off"
1414
runtime "Debug" -- Ensures /MDd is used

Dependencies/soloud/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project "soloud"
2222
}
2323

2424
filter { "configurations:Debug" }
25-
defines { "DEBUG" }
25+
defines { "DEBUG", "_DEBUG" }
2626
symbols "On"
2727

2828
filter { "configurations:Release" }

Dependencies/tinyxml2/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project "tinyxml2"
1717
}
1818

1919
filter { "configurations:Debug" }
20-
defines { "DEBUG" }
20+
defines { "DEBUG", "_DEBUG" }
2121
symbols "On"
2222

2323
filter { "configurations:Release" }

Dependencies/tracy/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ project "tracy"
2020
filter {}
2121

2222
filter { "configurations:Debug" }
23-
defines { "DEBUG" }
23+
defines { "DEBUG", "_DEBUG" }
2424
symbols "On"
2525

2626
filter { "configurations:Release" }

Sources/OvAudio/premake5.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ project "OvAudio"
2828
}
2929

3030
filter { "configurations:Debug" }
31-
defines { "DEBUG" }
31+
defines { "DEBUG", "_DEBUG" }
3232
symbols "On"
3333

3434
filter { "configurations:Release" }

0 commit comments

Comments
 (0)