938c2ba307
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.
15 lines
273 B
Plaintext
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
|