mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-24 06:55:27 -07:00
fix Makefile and make it can work with QT5, now you can compiling with wiki easily.
This commit is contained in:
parent
51b42675bf
commit
bb6295ea64
1 changed files with 3 additions and 3 deletions
|
@ -29,9 +29,9 @@ ifneq (,$(findstring MINGW,$(platform)))
|
|||
QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
|
||||
endif
|
||||
else ifeq ($(platform),Darwin)
|
||||
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
|
||||
QTLDLIBS = $(shell pkg-config --libs QtCore QtGui 2>/dev/null)
|
||||
MOC = $(shell pkg-config --variable=moc_location QtCore)
|
||||
CXXFLAGS = $(shell pkg-config --cflags Qt5Core Qt5Gui Qt5Widgets 2>/dev/null) -Wall -O4
|
||||
QTLDLIBS = $(shell pkg-config --libs Qt5Core Qt5Gui Qt5Widgets 2>/dev/null)
|
||||
MOC = $(shell pkg-config --variable=moc_location Qt5Core 2>/dev/null)
|
||||
LUAPLATFORM = macosx
|
||||
else
|
||||
CXXFLAGS = $(shell pkg-config --cflags QtCore QtGui 2>/dev/null) -Wall -O4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue