1
0
mirror of https://github.com/facebook/zstd.git synced 2025-07-29 11:21:22 +03:00

Get ready to add tests to travis-ci

This commit is contained in:
Nick Terrell
2016-09-01 16:21:19 -07:00
parent 4c3b1881f2
commit 040cfd8e7d
4 changed files with 18 additions and 9 deletions

View File

@ -7,9 +7,6 @@
# of patent rights can be found in the PATENTS file in the same directory.
# ##########################################################################
GTEST_INC ?= -isystem googletest/googletest/include
GTEST_LIB ?= -L googletest/build/googlemock/gtest
# Define *.exe as extension for Windows systems
ifneq (,$(filter Windows%,$(OS)))
EXT =.exe
@ -19,6 +16,10 @@ endif
PZSTDDIR = ../..
# Set GTEST_INC and GTEST_LIB to work with your install of gtest
GTEST_INC ?= -isystem $(PZSTDDIR)/googletest/googletest/include
GTEST_LIB ?= -L $(PZSTDDIR)/googletest/build/googlemock/gtest
CPPFLAGS = -I$(PZSTDDIR) $(GTEST_INC) $(GTEST_LIB)
CFLAGS ?= -O3
CFLAGS += -std=c++11