mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-24 15:12:23 +01:00
byuu says: Changelog: - restructured the project and removed a whole bunch of old/dead directives from higan/GNUmakefile - huge amounts of work on hiro/cocoa (compiles but ~70% of the functionality is commented out) - fixed a masking error in my ARM CPU disassembler [Lioncash] - SFC: decided to change board cic=(411,413) back to board region=(ntsc,pal) ... the former was too obtuse If you rename Boolean (it's a problem with an include from ruby, not from hiro) and disable all the ruby drivers, you can compile an OS X binary, but obviously it's not going to do anything. It's a boring WIP, I just wanted to push out the project structure change now at the start of this WIP cycle.
61 lines
1.6 KiB
C++
61 lines
1.6 KiB
C++
#include "platform.hpp"
|
|
#include "utility.cpp"
|
|
|
|
#include "font.cpp"
|
|
#include "desktop.cpp"
|
|
#include "monitor.cpp"
|
|
#include "keyboard.cpp"
|
|
#include "mouse.cpp"
|
|
#include "browser-window.cpp"
|
|
#include "message-window.cpp"
|
|
|
|
#include "object.cpp"
|
|
#include "group.cpp"
|
|
|
|
#include "timer.cpp"
|
|
#include "window.cpp"
|
|
#include "status-bar.cpp"
|
|
#include "menu-bar.cpp"
|
|
#include "popup-menu.cpp"
|
|
|
|
#include "action/action.cpp"
|
|
#include "action/menu.cpp"
|
|
#include "action/menu-separator.cpp"
|
|
#include "action/menu-item.cpp"
|
|
#include "action/menu-check-item.cpp"
|
|
#include "action/menu-radio-item.cpp"
|
|
|
|
#include "sizable.cpp"
|
|
#include "layout.cpp"
|
|
|
|
#include "widget/widget.cpp"
|
|
#include "widget/button.cpp"
|
|
#include "widget/canvas.cpp"
|
|
#include "widget/check-button.cpp"
|
|
#include "widget/check-label.cpp"
|
|
#include "widget/combo-button.cpp"
|
|
#include "widget/combo-button-item.cpp"
|
|
#include "widget/console.cpp"
|
|
#include "widget/frame.cpp"
|
|
#include "widget/hex-edit.cpp"
|
|
#include "widget/horizontal-scroll-bar.cpp"
|
|
#include "widget/horizontal-slider.cpp"
|
|
#include "widget/label.cpp"
|
|
#include "widget/line-edit.cpp"
|
|
#include "widget/list-view.cpp"
|
|
#include "widget/list-view-header.cpp"
|
|
#include "widget/list-view-column.cpp"
|
|
#include "widget/list-view-item.cpp"
|
|
#include "widget/list-view-cell.cpp"
|
|
#include "widget/progress-bar.cpp"
|
|
#include "widget/radio-button.cpp"
|
|
#include "widget/radio-label.cpp"
|
|
#include "widget/tab-frame.cpp"
|
|
#include "widget/tab-frame-item.cpp"
|
|
#include "widget/text-edit.cpp"
|
|
#include "widget/vertical-scroll-bar.cpp"
|
|
#include "widget/vertical-slider.cpp"
|
|
#include "widget/viewport.cpp"
|
|
|
|
#include "application.cpp"
|