diff --git a/win32/CMakeLists.txt b/win32/CMakeLists.txt index 966f2b15..e6a346ea 100644 --- a/win32/CMakeLists.txt +++ b/win32/CMakeLists.txt @@ -1,9 +1,21 @@ +add_library(dbgcore SHARED IMPORTED GLOBAL) + +set_target_properties(dbgcore PROPERTIES + IMPORTED_LOCATION ${CMAKE_CURRENT_LIST_DIR}/libs/dbgcore.dll +) + add_library(dbghelp SHARED IMPORTED GLOBAL) set_target_properties(dbghelp PROPERTIES IMPORTED_LOCATION ${CMAKE_CURRENT_LIST_DIR}/libs/dbghelp.dll ) +add_library(dbgeng SHARED IMPORTED GLOBAL) + +set_target_properties(dbgeng PROPERTIES + IMPORTED_LOCATION ${CMAKE_CURRENT_LIST_DIR}/libs/dbgeng.dll +) + add_library(freetype STATIC IMPORTED GLOBAL) set_target_properties(freetype PROPERTIES diff --git a/win32/libs/dbgcore.dll b/win32/libs/dbgcore.dll new file mode 100644 index 00000000..568b4c26 Binary files /dev/null and b/win32/libs/dbgcore.dll differ diff --git a/win32/libs/dbgeng.dll b/win32/libs/dbgeng.dll new file mode 100644 index 00000000..4db8ec3c Binary files /dev/null and b/win32/libs/dbgeng.dll differ diff --git a/win32/libs/dbghelp.dll b/win32/libs/dbghelp.dll index aeadee57..7eda6261 100644 Binary files a/win32/libs/dbghelp.dll and b/win32/libs/dbghelp.dll differ