1
0
mirror of synced 2025-04-26 14:28:51 +03:00

Added proxy test in Makefile

This commit is contained in:
yhirose 2019-12-22 21:07:26 -05:00
parent 079d3605ea
commit 5675cad407
2 changed files with 4 additions and 1 deletions

View File

@ -8,6 +8,9 @@ ZLIB_SUPPORT = -DCPPHTTPLIB_ZLIB_SUPPORT -lz
all : test
./test
proxy : test_proxy
./test_proxy
test : test.cc ../httplib.h Makefile cert.pem
$(CXX) -o test $(CXXFLAGS) test.cc gtest/gtest-all.cc gtest/gtest_main.cc $(OPENSSL_SUPPORT) $(ZLIB_SUPPORT) -pthread

View File

@ -1,5 +1,5 @@
FROM centos:7
LABEL maintainer="yuji.hirose.bug@gmail.com"
ARG auth="basic"
ARG port="3128"