makefile 392 B

12345678910111213141516
  1. ifeq ($(GPP),)
  2. GPP=g++
  3. endif
  4. ifeq ($(NG),)
  5. XFLAG=-DXGTEST
  6. endif
  7. INC=-I ../.. -I ../../googletest/googletest/include -I /usr/include/qt4 -I /usr/include/qt4/QtCore
  8. LIB=-L ../../googletest/lib -l gtest -pthread -lQtCore
  9. json:
  10. $(GPP) -o $@ -g -Wall -Wextra test.cpp -std=c++11 -DXPACK_SUPPORT_QT $(INC) $(LIB) $(XFLAG)
  11. @-valgrind --tool=memcheck --leak-check=full ./$@
  12. #@- ./$@
  13. @-rm $@