1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Add shared library project files.

This commit is contained in:
Bartosz Taudul
2020-01-25 17:08:33 +01:00
parent 3ffbb56fa0
commit 536e3e3da3
7 changed files with 342 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
ARCH := $(shell uname -m)
CFLAGS := -O3 -s -fomit-frame-pointer
DEFINES := -DNDEBUG
BUILD := release
ifeq ($(ARCH),x86_64)
CFLAGS += -msse4.1
endif
include build.mk