From: David Reiss Date: Thu, 2 Apr 2009 23:49:18 +0000 (+0000) Subject: cpp: Fix test server/client under test/cpp X-Git-Tag: 0.2.0~167 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=356d570f36b06cbffea514070a0c347751dcf3f4;p=common%2Fthrift.git cpp: Fix test server/client under test/cpp git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@761479 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/test/cpp/Makefile.thrift b/test/cpp/Makefile.thrift index d861a2dc..463b9c7e 100644 --- a/test/cpp/Makefile.thrift +++ b/test/cpp/Makefile.thrift @@ -59,16 +59,16 @@ stubs: ../ThriftTest.thrift $(THRIFT) --gen cpp ../ThriftTest.thrift server-debug: stubs - g++ -o TestServer $(DCFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp + g++ -o TestServer $(DCFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp ../ThriftTest_extras.cpp client-debug: stubs - g++ -o TestClient $(DCFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp + g++ -o TestClient $(DCFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp ../ThriftTest_extras.cpp server: stubs - g++ -o TestServer $(CFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp + g++ -o TestServer $(CFL) src/TestServer.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp ../ThriftTest_extras.cpp client: stubs - g++ -o TestClient $(CFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp + g++ -o TestClient $(CFL) src/TestClient.cpp ./gen-cpp/ThriftTest.cpp ./gen-cpp/ThriftTest_types.cpp ../ThriftTest_extras.cpp small: $(THRIFT) --gen cpp ../SmallTest.thrift