Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
Merge pull request #510 from AntonShalgachev/fix-mimalloc-dll-name
Browse files Browse the repository at this point in the history
[Conan] Copy the correct version of `mimalloc.dll` in Debug configuration
  • Loading branch information
espkk committed Nov 8, 2023
2 parents 3cd2ced + 1841862 commit 2d3fd8d
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,7 @@ def imports(self):
if self.options.steam:
self.__install_lib("steam_api64.dll")

self.__install_bin("mimalloc-redirect.dll")
if self.settings.build_type == "Debug":
self.__install_bin("mimalloc-debug.dll")
else:
self.__install_bin("mimalloc.dll")
self.__install_bin("mimalloc*.dll") # mimalloc, mimalloc-redirect, mimalloc-debug, etc.

else: # not Windows
if self.settings.build_type == "Debug":
Expand Down

0 comments on commit 2d3fd8d

Please sign in to comment.