Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ addons:
before_script:
- wget https://github.com/google/googletest/archive/master.zip -O /tmp/gtest.zip
- unzip /tmp/gtest.zip
- export GTEST_PATH=$PWD/googletest-master/googletest
- export GTEST_PATH=$PWD/googletest-master
- mkdir $GTEST_PATH/build
- pushd $GTEST_PATH/build
- cmake ..
Expand Down
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ vpath libgtest_main.a ${GTEST_PATH}/build/lib
vpath libgtest.a ${GTEST_PATH}/build/lib

SOURCES = $(wildcard math/gtest_*.cc) $(wildcard mve/gtest_*.cc) $(wildcard sfm/gtest_*.cc) $(wildcard util/gtest_*.cc) $(wildcard fssr/gtest_*.cc)
INCLUDES = -I${MVE_ROOT}/libs -I${GTEST_PATH}/include
INCLUDES = -I${MVE_ROOT}/libs -I${GTEST_PATH}/googletest/include
CXXWARNINGS = -Wall -Wextra -pedantic -Wno-sign-compare
CXXFLAGS = -std=c++11 -pthread ${CXXWARNINGS} ${INCLUDES}
LDLIBS += -lpng -ltiff -ljpeg
Expand Down