Skip to content

Commit 81e4d19

Browse files
committed
Fixed source symbols not working. Introduced in a6e2554
1 parent afc0c50 commit 81e4d19

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

premake5.lua

+3-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ workspace "MTASA"
6363
end
6464

6565
filter {"system:windows", "configurations:Nightly", "kind:not StaticLib"}
66-
symbolspath "Build/Symbols/$(ProjectName).pdb"
67-
66+
os.mkdir("Build/Symbols")
67+
linkoptions "/PDB:\"Symbols\\$(ProjectName).pdb\""
68+
6869
filter {"system:windows", "toolset:*140*"}
6970
defines { "_TIMESPEC_DEFINED" } -- fix pthread redefinition error, TODO: Remove when we fully moved to vs2015
7071

0 commit comments

Comments
 (0)