core: Fix libdwarf and Qt build failure
[clinton/Virtual-Jaguar-Rx.git] / virtualjaguar.pro
index 60043d3..3a422ec 100644 (file)
-#\r
-# Virtual Jaguar Qt project file\r
-#\r
-# by James Hammons\r
-# Copyright (C) 2011 Underground Software\r
-#\r
-# See the README and GPLv3 files for licensing and warranty information\r
-#\r
-# NOTE: M68000 core is built and linked in as a library, so there should be no\r
-#       more problems with using the qmake build system as-is. :-)\r
-#       Other than on the Mac, where it stupidly defaults to making XCode\r
-#       binaries. >:-( Well, we fixed it in the Makefile, by doing platform\r
-#       detection there. :-/\r
-#\r
-\r
-TARGET     = virtualjaguar\r
-CONFIG    += qt warn_on release\r
-# debug\r
-RESOURCES += src/gui/virtualjaguar.qrc\r
-LIBS      += -Lobj -Lsrc/m68000/obj -ljaguarcore -lz -lm68k -llibelf -llibdwarf -lelf\r
-QT        += opengl widgets\r
-\r
-# We stuff all the intermediate crap into obj/ so it won't confuse us mere\r
-# mortals ;-)\r
-OBJECTS_DIR = obj\r
-MOC_DIR     = obj\r
-RCC_DIR     = obj\r
-UI_DIR      = obj\r
-\r
-# Platform specific defines\r
-win32     { DEFINES += __GCCWIN32__ }\r
-else:macx { DEFINES += __GCCUNIX__ __THINK_STUPID__ }\r
-else:unix { DEFINES += __GCCUNIX__ }\r
-\r
-# SDL (to link statically on Mac)\r
-macx { LIBS += `sdl-config --static-libs` }\r
-#else:win32 { LIBS += `$(CROSS)sdl-config --libs` }\r
-#else:win32 { LIBS += `$(CROSS)sdl-config --static-libs` -static-libgcc}\r
-else:win32 { LIBS += `$(CROSS)sdl-config --static-libs` -static -static-libgcc -static-libstdc++ }\r
-else { LIBS += `$(CROSS)sdl-config --libs` }\r
-#else { LIBS += `$(CROSS)sdl-config --static-libs` }\r
-\r
-# Icon on Win32, Mac\r
-#win32 { LIBS += res/vj-ico.o }\r
-#win32 { ICON = res/vj.ico }\r
-#win32 { LIBS += obj/vj.o; $(CROSS)windres -i res/vj.rc -o obj/vj.o --include-dir=./res }\r
-win32 { RC_FILE = res/vj.rc }\r
-macx  { ICON = res/vj-icon.icns }\r
-\r
-# C/C++ flags...\r
-# NOTE: May have to put -Wall back in, but only on non-release cycles. It can\r
-#       cause problems if you're not careful. (Can do this via command line in\r
-#       qmake)\r
-QMAKE_CFLAGS += `$(CROSS)sdl-config --cflags`\r
-QMAKE_CXXFLAGS += `$(CROSS)sdl-config --cflags`\r
-\r
-# Need to add libcdio stuffola (checking/including)...\r
-\r
-# Translations. NB: Nobody has stepped up to do any :-P so these are dummy\r
-# translations\r
-# Removed for now, they interfere with proper running in non-English locales for\r
-# some reason. :-/\r
-#TRANSLATIONS = \\r
-#      virtualjaguar_fr.ts \\r
-#      virtualjaguar_gr.ts\r
-\r
-INCLUDEPATH += \\r
-       src \\r
-       src/debugger \\r
-       src/gui\r
-\r
-DEPENDPATH = \\r
-       src \\r
-       src/debugger \\r
-       src/gui \\r
-       src/gui/debug \\r
-       src/m68000\r
-\r
-# The GUI\r
-\r
-HEADERS = \\r
-       src/gui/about.h \\r
-       src/gui/alpinetab.h \\r
-       src/gui/app.h \\r
-       src/gui/configdialog.h \\r
-       src/gui/controllertab.h \\r
-       src/gui/controllerwidget.h \\r
-       src/gui/filelistmodel.h \\r
-       src/gui/filepicker.h \\r
-       src/gui/filethread.h \\r
-       src/gui/gamepad.h \\r
-       src/gui/generaltab.h \\r
-       src/gui/modelsbiostab.h \       \r
-       src/gui/keybindingstab.h \\r
-       src/gui/glwidget.h \\r
-       src/gui/help.h \\r
-       src/gui/imagedelegate.h \\r
-       src/gui/keygrabber.h \\r
-       src/gui/mainwin.h \\r
-       src/gui/profile.h \\r
-       src/gui/emustatus.h \\r
-       src/gui/debug/cpubrowser.h \\r
-       src/gui/debug/m68kdasmbrowser.h \\r
-       src/gui/debug/memorybrowser.h \\r
-       src/gui/debug/opbrowser.h \\r
-       src/gui/debug/riscdasmbrowser.h \\r
-       src/gui/debug/stackbrowser.h \\r
-       src/debugger/debuggertab.h \\r
-       src/debugger/DasmWin.h \\r
-       src/debugger/m68kDasmWin.h \\r
-       src/debugger/DBGManager.h \\r
-       src/debugger/DSPDasmWin.h \\r
-       src/debugger/GPUDasmWin.h \\r
-       src/debugger/HWLABELManager.h \\r
-       src/debugger/ELFManager.h \\r
-       src/debugger/allwatchbrowser.h \\r
-       src/debugger/localbrowser.h \\r
-       src/debugger/DWARFManager.h \\r
-       src/debugger/memory1browser.h \\r
-       src/debugger/heapallocatorbrowser.h \\r
-       src/debugger/brkWin.h \\r
-       src/debugger/VideoWin.h \\r
-       src/debugger/callstackbrowser.h \\r
-       src/debugger/exceptionvectortablebrowser.h \\r
-       src/log.h \\r
-       src/unzip.h \\r
-       src/crc32.h \\r
-       src/settings.h \\r
-       src/modelsBIOS.h \\r
-       src/file.h\r
-\r
-SOURCES = \\r
-       src/gui/about.cpp \\r
-       src/gui/alpinetab.cpp \\r
-       src/gui/app.cpp \\r
-       src/gui/configdialog.cpp \\r
-       src/gui/controllertab.cpp \\r
-       src/gui/controllerwidget.cpp \\r
-       src/gui/filelistmodel.cpp \\r
-       src/gui/filepicker.cpp \\r
-       src/gui/filethread.cpp \\r
-       src/gui/gamepad.cpp \\r
-       src/gui/generaltab.cpp \\r
-       src/gui/modelsbiostab.cpp \\r
-       src/gui/keybindingstab.cpp \\r
-       src/gui/glwidget.cpp \\r
-       src/gui/help.cpp \\r
-       src/gui/imagedelegate.cpp \\r
-       src/gui/keygrabber.cpp \\r
-       src/gui/mainwin.cpp \\r
-       src/gui/profile.cpp \\r
-       src/gui/emustatus.cpp \\r
-       src/gui/debug/cpubrowser.cpp \\r
-       src/gui/debug/m68kdasmbrowser.cpp \\r
-       src/gui/debug/memorybrowser.cpp \\r
-       src/gui/debug/opbrowser.cpp \\r
-       src/gui/debug/riscdasmbrowser.cpp \\r
-       src/gui/debug/stackbrowser.cpp \\r
-       src/debugger/debuggertab.cpp \\r
-       src/debugger/DasmWin.cpp \\r
-       src/debugger/m68kDasmWin.cpp \\r
-       src/debugger/DBGManager.cpp \\r
-       src/debugger/DSPDasmWin.cpp \\r
-       src/debugger/GPUDasmWin.cpp \\r
-       src/debugger/HWLABELManager.cpp \\r
-       src/debugger/ELFManager.cpp \\r
-       src/debugger/allwatchbrowser.cpp \\r
-       src/debugger/localbrowser.cpp \\r
-       src/debugger/DWARFManager.cpp \\r
-       src/debugger/memory1browser.cpp \\r
-       src/debugger/heapallocatorbrowser.cpp \\r
-       src/debugger/brkWin.cpp \\r
-       src/debugger/VideoWin.cpp \\r
-       src/debugger/exceptionvectortablebrowser.cpp \\r
-       src/debugger/callstackbrowser.cpp \\r
-       src/log.cpp \\r
-       src/unzip.cpp \\r
-       src/crc32.cpp \\r
-       src/settings.cpp \\r
-       src/modelsBIOS.cpp \    \r
-       src/file.cpp\r
-               
\ No newline at end of file
+#
+# Virtual Jaguar Qt project file
+#
+# by James Hammons
+# Copyright (C) 2011 Underground Software
+#
+# Modified by Jean-Paul Mari
+#
+# See the README and GPLv3 files for licensing and warranty information
+#
+# 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 += src/gui/virtualjaguar.qrc
+LIBS      += -Lobj -Lsrc/m68000/obj -ljaguarcore -lz -lm68k -lelf -ldwarf
+QT        += opengl widgets
+
+# 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
+UI_DIR      = obj
+
+# Platform specific defines
+win32     { DEFINES += __GCCWIN32__ }
+else:macx { DEFINES += __GCCUNIX__ __THINK_STUPID__ }
+else:unix { DEFINES += __GCCUNIX__ }
+
+# SDL (to link statically on Mac)
+macx { LIBS += `sdl-config --static-libs` }
+#else:win32 { LIBS += `$(CROSS)sdl-config --libs` }
+#else:win32 { LIBS += `$(CROSS)sdl-config --static-libs` -static-libgcc}
+else:win32 { LIBS += `$(CROSS)sdl-config --static-libs` -static -static-libgcc -static-libstdc++ }
+else { LIBS += `$(CROSS)sdl-config --libs` }
+#else { LIBS += `$(CROSS)sdl-config --static-libs` }
+
+# Icon on Win32, Mac
+#win32 { LIBS += res/vj-ico.o }
+#win32 { ICON = res/vj.ico }
+#win32 { LIBS += obj/vj.o; $(CROSS)windres -i res/vj.rc -o obj/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`
+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/debugger \
+       src/gui
+
+DEPENDPATH = \
+       src \
+       src/debugger \
+       src/gui \
+       src/gui/debug \
+       src/m68000
+
+# The GUI
+
+HEADERS = \
+       src/gui/about.h \
+       src/gui/alpinetab.h \
+       src/gui/app.h \
+       src/gui/configdialog.h \
+       src/gui/controllertab.h \
+       src/gui/controllerwidget.h \
+       src/gui/filelistmodel.h \
+       src/gui/filepicker.h \
+       src/gui/filethread.h \
+       src/gui/gamepad.h \
+       src/gui/generaltab.h \
+       src/gui/modelsbiostab.h \       
+       src/gui/keybindingstab.h \
+       src/gui/glwidget.h \
+       src/gui/help.h \
+       src/gui/imagedelegate.h \
+       src/gui/keygrabber.h \
+       src/gui/mainwin.h \
+       src/gui/profile.h \
+       src/gui/emustatus.h \
+       src/gui/debug/cpubrowser.h \
+       src/gui/debug/hwregsblitterbrowser.h \
+       src/gui/debug/m68kdasmbrowser.h \
+       src/gui/debug/memorybrowser.h \
+       src/gui/debug/opbrowser.h \
+       src/gui/debug/riscdasmbrowser.h \
+       src/gui/debug/stackbrowser.h \
+       src/gui/debug/hwregsbrowser.h \
+       src/debugger/debuggertab.h \
+       src/debugger/DasmWin.h \
+       src/debugger/m68kDasmWin.h \
+       src/debugger/SourcesWin.h \
+       src/debugger/SourceCWin.h \
+       src/debugger/DBGManager.h \
+       src/debugger/DSPDasmWin.h \
+       src/debugger/GPUDasmWin.h \
+       src/debugger/HWLABELManager.h \
+       src/debugger/ELFManager.h \
+       src/debugger/allwatchbrowser.h \
+       src/debugger/localbrowser.h \
+       src/debugger/DWARFManager.h \
+       src/debugger/memory1browser.h \
+       src/debugger/heapallocatorbrowser.h \
+       src/debugger/BreakpointsWin.h \
+       src/debugger/VideoWin.h \
+       src/debugger/FilesrcListWin.h \
+       src/debugger/callstackbrowser.h \
+       src/debugger/exceptionvectortablebrowser.h \
+       src/debugger/NewFnctBreakpointWin.h \
+       src/debugger/CartFilesListWin.h \
+       src/debugger/SaveDumpAsWin.h \
+       src/log.h \
+       src/unzip.h \
+       src/crc32.h \
+       src/settings.h \
+       src/file.h \
+       src/LEB128.h
+
+SOURCES = \
+       src/gui/about.cpp \
+       src/gui/alpinetab.cpp \
+       src/gui/app.cpp \
+       src/gui/configdialog.cpp \
+       src/gui/controllertab.cpp \
+       src/gui/controllerwidget.cpp \
+       src/gui/filelistmodel.cpp \
+       src/gui/filepicker.cpp \
+       src/gui/filethread.cpp \
+       src/gui/gamepad.cpp \
+       src/gui/generaltab.cpp \
+       src/gui/modelsbiostab.cpp \
+       src/gui/keybindingstab.cpp \
+       src/gui/glwidget.cpp \
+       src/gui/help.cpp \
+       src/gui/imagedelegate.cpp \
+       src/gui/keygrabber.cpp \
+       src/gui/mainwin.cpp \
+       src/gui/profile.cpp \
+       src/gui/emustatus.cpp \
+       src/gui/debug/cpubrowser.cpp \
+       src/gui/debug/hwregsblitterbrowser.cpp \
+       src/gui/debug/m68kdasmbrowser.cpp \
+       src/gui/debug/memorybrowser.cpp \
+       src/gui/debug/opbrowser.cpp \
+       src/gui/debug/riscdasmbrowser.cpp \
+       src/gui/debug/stackbrowser.cpp \
+       src/gui/debug/hwregsbrowser.cpp \
+       src/debugger/debuggertab.cpp \
+       src/debugger/DasmWin.cpp \
+       src/debugger/m68kDasmWin.cpp \
+       src/debugger/SourcesWin.cpp \
+       src/debugger/SourceCWin.cpp \
+       src/debugger/DBGManager.cpp \
+       src/debugger/DSPDasmWin.cpp \
+       src/debugger/GPUDasmWin.cpp \
+       src/debugger/HWLABELManager.cpp \
+       src/debugger/ELFManager.cpp \
+       src/debugger/allwatchbrowser.cpp \
+       src/debugger/localbrowser.cpp \
+       src/debugger/DWARFManager.cpp \
+       src/debugger/memory1browser.cpp \
+       src/debugger/heapallocatorbrowser.cpp \
+       src/debugger/BreakpointsWin.cpp \
+       src/debugger/VideoWin.cpp \
+       src/debugger/FilesrcListWin.cpp \
+       src/debugger/exceptionvectortablebrowser.cpp \
+       src/debugger/callstackbrowser.cpp \
+       src/debugger/NewFnctBreakpointWin.cpp \
+       src/debugger/CartFilesListWin.cpp \
+       src/debugger/SaveDumpAsWin.cpp \
+       src/log.cpp \
+       src/unzip.cpp \
+       src/crc32.cpp \
+       src/settings.cpp \
+       src/file.cpp \
+       src/LEB128.cpp
+