mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-02-23 23:24:38 +08:00
Fix QT compilation for Windows/MinGW and update the compilation instructions accordingly.
This commit is contained in:
parent
9cc7c4b4d1
commit
8691f5b7bb
2 changed files with 20 additions and 6 deletions
|
@ -53,6 +53,13 @@ export DEVKITARM=/c/devkitPro/devkitARM
|
|||
|
||||
6 - Install Strawberry Perl [6]
|
||||
|
||||
7 - Setup a few variables
|
||||
|
||||
In your shell from MSYS, make sure you set QTDIR to your QT installation:
|
||||
export QTDIR=/c/QT/qt
|
||||
And add its bin to your path as well:
|
||||
export PATH=$PATH:$QTDIR/bin
|
||||
|
||||
Download links:
|
||||
|
||||
[1] http://qt.nokia.com/downloads/sdk-windows-cpp
|
||||
|
|
|
@ -14,19 +14,26 @@ LDLIBS = -L/opt/local/lib -L/usr/local/lib -lusb -lreadline -lpthread
|
|||
LDFLAGS = $(COMMON_FLAGS)
|
||||
CFLAGS = -std=gnu99 -I. -I../include -I../common -I/opt/local/include -Wall -Wno-unused-function $(COMMON_FLAGS) -g -O3
|
||||
|
||||
platform = $(shell uname)
|
||||
|
||||
ifneq (,$(findstring MINGW,$(platform)))
|
||||
CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
|
||||
QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
|
||||
MOC = moc
|
||||
else ifeq ($(platform),Darwin)
|
||||
CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Version/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers
|
||||
QTLDLIBS = -framework QtGui -framework QtCore
|
||||
MOC = moc
|
||||
else
|
||||
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O3
|
||||
QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
|
||||
|
||||
ifeq ($(shell uname),Darwin)
|
||||
CXXFLAGS = -I/Library/Frameworks/QtGui.framework/Versions/Current/Headers -I/Library/Frameworks/QtCore.framework/Versions/Current/Headers
|
||||
QTLDLIBS = -framework QtGui -framework QtCore
|
||||
MOC = moc
|
||||
MOC = $(shell pkg-config --variable=moc_location QtCore)
|
||||
endif
|
||||
|
||||
|
||||
ifneq ($(QTLDLIBS),)
|
||||
QTGUI = $(OBJDIR)/proxgui.o $(OBJDIR)/proxguiqt.o $(OBJDIR)/proxguiqt.moc.o
|
||||
CFLAGS += -DHAVE_GUI
|
||||
MOC ?= $(shell pkg-config --variable=moc_location QtCore)
|
||||
LINK.o = $(LINK.cpp)
|
||||
else
|
||||
QTGUI = guidummy.o
|
||||
|
|
Loading…
Reference in a new issue