Skip to content

Commit

Permalink
dbghelp dll - fixes nem0#1237
Browse files Browse the repository at this point in the history
  • Loading branch information
nem0 committed Feb 14, 2018
1 parent 621ad75 commit ba85fab
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
Binary file added external/dbghelp/dbgcore.dll
Binary file not shown.
Binary file added external/dbghelp/dbghelp.dll
Binary file not shown.
4 changes: 3 additions & 1 deletion projects/genie.lua
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,9 @@ function copyDlls(src_dir, platform_dir, dest_dir)
"xcopy /Y \"$(SolutionDir)../../../external/physx/dll/" .. ide_dir .. "/" .. platform_dir .. "\\PhysX3CommonCHECKED_".. physx_suffix .. ".dll\" \"$(SolutionDir)bin/" .. dest_dir .. "\"",
"xcopy /Y \"$(SolutionDir)../../../external/physx/dll/" .. ide_dir .. "/" .. platform_dir .. "\\PhysX3CookingCHECKED_".. physx_suffix .. ".dll\" \"$(SolutionDir)bin/" .. dest_dir .. "\"",
"xcopy /Y \"$(SolutionDir)../../../external/physx/dll/" .. ide_dir .. "/" .. platform_dir .. "\\PhysX3CharacterKinematicCHECKED_".. physx_suffix .. ".dll\" \"$(SolutionDir)bin/" .. dest_dir .. "\"",
"xcopy /Y \"$(SolutionDir)../../../external/physx/dll/" .. ide_dir .. "/" .. platform_dir .. "\\PhysX3CHECKED_".. physx_suffix .. ".dll\" \"$(SolutionDir)bin/" .. dest_dir .. "\""
"xcopy /Y \"$(SolutionDir)../../../external/physx/dll/" .. ide_dir .. "/" .. platform_dir .. "\\PhysX3CHECKED_".. physx_suffix .. ".dll\" \"$(SolutionDir)bin/" .. dest_dir .. "\"",
[[xcopy /Y "$(SolutionDir)..\..\..\external\dbghelp\dbghelp.dll" "$(SolutionDir)bin\]] .. dest_dir .. "\"",
[[xcopy /Y "$(SolutionDir)..\..\..\external\dbghelp\dbgcore.dll" "$(SolutionDir)bin\]] .. dest_dir .. "\""
}

configuration { "linux-*" }
Expand Down
2 changes: 2 additions & 0 deletions src/editor/studio_app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2173,6 +2173,8 @@ class StudioAppImpl LUMIX_FINAL : public StudioApp
"PhysX3CHECKED_x64.dll",
"PhysX3CommonCHECKED_x64.dll",
"PhysX3CookingCHECKED_x64.dll"
"dbghelp.dll",
"dbgcore.dll"
};
for(auto& file : bin_files)
{
Expand Down

0 comments on commit ba85fab

Please sign in to comment.