mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-22 22:44:34 +00:00
Link with Thread Building Blocks, if available.
This commit is contained in:
parent
2e8d20b6e8
commit
3e74d041c9
@ -14,6 +14,11 @@ BASE2 := $(shell egrep 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.
|
|||||||
SRC := $(filter-out $(FILTER),$(BASE))
|
SRC := $(filter-out $(FILTER),$(BASE))
|
||||||
SRC2 := $(filter-out $(FILTER),$(BASE2))
|
SRC2 := $(filter-out $(FILTER),$(BASE2))
|
||||||
|
|
||||||
|
TBB := $(shell ld -ltbb -o /dev/null 2>/dev/null; echo $$?)
|
||||||
|
ifeq ($(TBB),0)
|
||||||
|
LIBS += -ltbb
|
||||||
|
endif
|
||||||
|
|
||||||
OBJDIRBASE := obj/$(BUILD)
|
OBJDIRBASE := obj/$(BUILD)
|
||||||
OBJDIR := $(OBJDIRBASE)/o/o/o
|
OBJDIR := $(OBJDIRBASE)/o/o/o
|
||||||
|
|
||||||
|
@ -25,6 +25,11 @@ else
|
|||||||
LIBS += $(shell pkg-config --libs gtk+-2.0) -lGL
|
LIBS += $(shell pkg-config --libs gtk+-2.0) -lGL
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
TBB := $(shell ld -ltbb -o /dev/null 2>/dev/null; echo $$?)
|
||||||
|
ifeq ($(TBB),0)
|
||||||
|
LIBS += -ltbb
|
||||||
|
endif
|
||||||
|
|
||||||
OBJDIRBASE := obj/$(BUILD)
|
OBJDIRBASE := obj/$(BUILD)
|
||||||
OBJDIR := $(OBJDIRBASE)/o/o/o
|
OBJDIR := $(OBJDIRBASE)/o/o/o
|
||||||
|
|
||||||
|
@ -14,6 +14,11 @@ BASE2 := $(shell egrep 'ClCompile.*c"' ../win32/$(PROJECT).vcxproj | sed -e 's/.
|
|||||||
SRC := $(filter-out $(FILTER),$(BASE))
|
SRC := $(filter-out $(FILTER),$(BASE))
|
||||||
SRC2 := $(filter-out $(FILTER),$(BASE2))
|
SRC2 := $(filter-out $(FILTER),$(BASE2))
|
||||||
|
|
||||||
|
TBB := $(shell ld -ltbb -o /dev/null 2>/dev/null; echo $$?)
|
||||||
|
ifeq ($(TBB),0)
|
||||||
|
LIBS += -ltbb
|
||||||
|
endif
|
||||||
|
|
||||||
OBJDIRBASE := obj/$(BUILD)
|
OBJDIRBASE := obj/$(BUILD)
|
||||||
OBJDIR := $(OBJDIRBASE)/o/o/o
|
OBJDIR := $(OBJDIRBASE)/o/o/o
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user