Add license file and make gtest compile with own TR1 tuple library

This commit is contained in:
Mike Long
2014-01-09 22:04:03 +08:00
parent 2afa7273b7
commit cbe9b8b7fb
7 changed files with 56 additions and 6 deletions

View File

@@ -10,7 +10,7 @@ SOURCES=gtest-all.cc gtest-main.cc
$(BUILD_DIR)/%.o: %.cc
@echo 'Building file: $<'
@echo 'Invoking: GCC C++ Compiler'
g++ -I../ -O0 -g3 -Wall -c -o "$@" "$<"
g++ -I../ -O0 -g3 -Wall -DGTEST_USE_OWN_TR1_TUPLE=1 -c -o "$@" "$<"
@echo 'Finished building: $<'
@echo ' '