mirror of
https://github.com/NohamR/Reclass.git
synced 2026-05-10 19:59:21 +00:00
WinDbg plugin: load dbgeng.dll dynamically from Debugging Tools directory instead of static linking (system dbgeng.dll lacks remote DebugConnect). Copy tools dbghelp.dll next to exe so it loads before System32 version. Add COM init on DbgEng thread, browse for tools dir, styled dialog. Editor: derive darker background via theme.background.darker(115) for visual depth between chrome and editor surfaces. UI: global scrollbar styling, workspace accent bar 1px, pane tab font from editor settings, workspace dock default width 128px.
35 lines
877 B
CMake
35 lines
877 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(WinDbgMemoryPlugin LANGUAGES CXX)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|
|
|
# Qt is found by the parent project; QT variable (Qt5 or Qt6) is inherited
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
set(CMAKE_AUTORCC ON)
|
|
set(CMAKE_AUTOUIC ON)
|
|
|
|
# Plugin sources
|
|
set(PLUGIN_SOURCES
|
|
WinDbgMemoryPlugin.h
|
|
WinDbgMemoryPlugin.cpp
|
|
)
|
|
|
|
# Create shared library (DLL)
|
|
add_library(WinDbgMemoryPlugin SHARED ${PLUGIN_SOURCES})
|
|
|
|
# Link Qt + DbgEng
|
|
target_link_libraries(WinDbgMemoryPlugin PRIVATE ${QT}::Widgets ole32)
|
|
|
|
# Include directories
|
|
target_include_directories(WinDbgMemoryPlugin PRIVATE
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../../src
|
|
)
|
|
|
|
# Output to Plugins folder
|
|
set_target_properties(WinDbgMemoryPlugin PROPERTIES
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/Plugins"
|
|
RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/Plugins"
|
|
)
|