X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=virtualjaguar.pro;h=f0399e5ca90ecf7b755ff3362616808c8d836074;hb=a739aec450d9e0c1e2684be740b67ebd6cf40add;hp=27959de7e5c5701eb40b6feb4e77048ff2935cf6;hpb=d848a84a9c3a134b434025f28c9bf567a48bd94b;p=virtualjaguar diff --git a/virtualjaguar.pro b/virtualjaguar.pro index 27959de..f0399e5 100644 --- a/virtualjaguar.pro +++ b/virtualjaguar.pro @@ -6,22 +6,22 @@ # # See the README and GPLv3 files for licensing and warranty information # -# NOTE: Musashi is built and linked in as a library, so there should be no more -# problems with using the qmake build system as-is. :-) -# Other than on the Mac, where it stupidly defaults to making XCode binaries. >:-( -# Well, we fixed it in the Makefile, by doing platfrom detection there. :-/ +# NOTE: M68000 core is built and linked in as a library, so there should be no +# more problems with using the qmake build system as-is. :-) +# Other than on the Mac, where it stupidly defaults to making XCode +# binaries. >:-( Well, we fixed it in the Makefile, by doing platform +# detection there. :-/ # TARGET = virtualjaguar CONFIG += qt warn_on release # debug RESOURCES += virtualjaguar.qrc -#LIBS += -Lobj -ljaguarcore -lz -lmusashi -LIBS += -Lobj -ljaguarcore -lz -lm68k +LIBS += -Lobj -Lsrc/m68000/obj -ljaguarcore -lz -lm68k QT += opengl -#CROSS = i686-pc-mingw32- -# We stuff all the intermediate crap into obj/ so it won't confuse us mere mortals ;-) +# We stuff all the intermediate crap into obj/ so it won't confuse us mere +# mortals ;-) OBJECTS_DIR = obj MOC_DIR = obj RCC_DIR = obj @@ -36,17 +36,30 @@ else:unix { DEFINES += __GCCUNIX__ } macx { LIBS += `sdl-config --static-libs` } else { LIBS += `$(CROSS)sdl-config --libs` } -# Icon on Win32 -win32 { LIBS += res/vj-ico.o } +# Icon on Win32, Mac +#win32 { LIBS += res/vj-ico.o } +#win32 { ICON = res/vj.ico } +#win32 { LIBS += res/vj.o; $(CROSS)windres -i res/vj.rc -o vj.o --include-dir=./res } +win32 { RC_FILE = res/vj.rc } +macx { ICON = res/vj-icon.icns } # C/C++ flags... # NOTE: May have to put -Wall back in, but only on non-release cycles. It can -# cause problems if you're not careful. (Can do this via command line in qmake) -QMAKE_CFLAGS += `$(CROSS)sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -QMAKE_CXXFLAGS += `$(CROSS)sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer +# cause problems if you're not careful. (Can do this via command line in +# qmake) +QMAKE_CFLAGS += `$(CROSS)sdl-config --cflags` +QMAKE_CXXFLAGS += `$(CROSS)sdl-config --cflags` # Need to add libcdio stuffola (checking/including)... +# Translations. NB: Nobody has stepped up to do any :-P so these are dummy +# translations +# Removed for now, they interfere with proper running in non-English locales for +# some reason. :-/ +#TRANSLATIONS = \ +# virtualjaguar_fr.ts \ +# virtualjaguar_gr.ts + INCLUDEPATH += \ src \ src/gui @@ -54,6 +67,7 @@ INCLUDEPATH += \ DEPENDPATH = \ src \ src/gui \ + src/gui/debug \ src/m68000 # The GUI @@ -68,13 +82,19 @@ HEADERS = \ src/gui/filelistmodel.h \ src/gui/filepicker.h \ src/gui/filethread.h \ + src/gui/gamepad.h \ src/gui/generaltab.h \ src/gui/glwidget.h \ src/gui/help.h \ src/gui/imagedelegate.h \ src/gui/keygrabber.h \ src/gui/mainwin.h \ -# src/gui/sdljoystick.h + src/gui/profile.h \ + src/gui/debug/cpubrowser.h \ + src/gui/debug/m68kdasmbrowser.h \ + src/gui/debug/memorybrowser.h \ + src/gui/debug/opbrowser.h \ + src/gui/debug/riscdasmbrowser.h SOURCES = \ src/gui/about.cpp \ @@ -86,10 +106,17 @@ SOURCES = \ src/gui/filelistmodel.cpp \ src/gui/filepicker.cpp \ src/gui/filethread.cpp \ + src/gui/gamepad.cpp \ src/gui/generaltab.cpp \ src/gui/glwidget.cpp \ src/gui/help.cpp \ src/gui/imagedelegate.cpp \ src/gui/keygrabber.cpp \ src/gui/mainwin.cpp \ -# src/gui/sdljoystick.cpp + src/gui/profile.cpp \ + src/gui/debug/cpubrowser.cpp \ + src/gui/debug/m68kdasmbrowser.cpp \ + src/gui/debug/memorybrowser.cpp \ + src/gui/debug/opbrowser.cpp \ + src/gui/debug/riscdasmbrowser.cpp +