mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 14:44:34 +00:00
use pkg-config to get libcapstone config
This commit is contained in:
parent
a887d558f1
commit
94e7da11ec
@ -1,9 +1,8 @@
|
||||
CFLAGS +=
|
||||
CXXFLAGS := $(CFLAGS) -std=gnu++17
|
||||
DEFINES += -DTRACY_NO_STATISTICS
|
||||
INCLUDES := -I../../../capstone/include/capstone
|
||||
LIBS += -lcapstone -lpthread
|
||||
LDFLAGS := -L../../../capstone
|
||||
INCLUDES := $(shell pkg-config --cflags capstone)
|
||||
LIBS += $(shell pkg-config --libs capstone) -lpthread
|
||||
PROJECT := tracy-edit
|
||||
IMAGE := $(PROJECT)-$(BUILD)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user