Bochs/bochs/wxbochs.rc
Volker Ruppert 938c2ba307 USB debugger: Renamed configure option and config.h macro.
Now --enable-usb-debugger turns on USB debugger if not already done with Bochs debugger.
Now using BX_USB_DEBUGGER macro to prepare the code for implementations other than win32.
2024-07-06 18:48:14 +02:00

15 lines
273 B
Plaintext

#include "config.h"
icon_bochs ICON build/win32/nsis/bochs.ico
#include "wx/msw/wx.rc"
#if BX_WITH_WIN32
#include "win32res.rc"
#else
#if BX_USB_DEBUGGER
#include "win32usbres.rc"
#endif
#if BX_DEBUGGER_GUI
#include "win32_enh_dbg.rc"
#endif
#include "bxversion.rc"
#endif