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:
@ -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
|
||||
|
Reference in New Issue
Block a user