Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.mk « unix « library - github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fa7c5385bb09b045b900b8bfad91d89060b3efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
CFLAGS +=
CXXFLAGS := $(CFLAGS) -std=c++11 -fpic
DEFINES += -DTRACY_ENABLE
INCLUDES :=
LIBS := -lpthread -ldl
PROJECT := libtracy
IMAGE := $(PROJECT)-$(BUILD).so
SHARED_LIBRARY := yes

SRC := ../../public/TracyClient.cpp

include ../../common/unix.mk