mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
9892407ff0
This fixes header clash between getopt.h and unistd.h (required for unlink), which prevented LTO on macos.
13 lines
343 B
Makefile
13 lines
343 B
Makefile
CFLAGS +=
|
|
CXXFLAGS := $(CFLAGS) -std=gnu++17
|
|
DEFINES += -DTRACY_NO_STATISTICS
|
|
INCLUDES := $(shell pkg-config --cflags capstone)
|
|
LIBS += $(shell pkg-config --libs capstone) -lpthread
|
|
PROJECT := capture
|
|
IMAGE := $(PROJECT)-$(BUILD)
|
|
|
|
FILTER := ../../../getopt/getopt.c
|
|
include ../../../common/src-from-vcxproj.mk
|
|
|
|
include ../../../common/unix.mk
|