Thrift: move /lib/cpp code into /lib/cpp/src
authorMark Slee <mcslee@apache.org>
Mon, 26 Jun 2006 23:56:08 +0000 (23:56 +0000)
committerMark Slee <mcslee@apache.org>
Mon, 26 Jun 2006 23:56:08 +0000 (23:56 +0000)
Summary: Clean separation of src and buildfiles etc. is key

Reviewed By: aditya

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664719 13f79535-47bb-0310-9956-ffa450edef68

19 files changed:
lib/cpp/Makefile
lib/cpp/src/TProcessor.h [moved from lib/cpp/TProcessor.h with 100% similarity]
lib/cpp/src/Thrift.h [moved from lib/cpp/Thrift.h with 100% similarity]
lib/cpp/src/protocol/TBinaryProtocol.cc [moved from lib/cpp/protocol/TBinaryProtocol.cc with 100% similarity]
lib/cpp/src/protocol/TBinaryProtocol.h [moved from lib/cpp/protocol/TBinaryProtocol.h with 100% similarity]
lib/cpp/src/protocol/TProtocol.h [moved from lib/cpp/protocol/TProtocol.h with 100% similarity]
lib/cpp/src/server/TServer.h [moved from lib/cpp/server/TServer.h with 100% similarity]
lib/cpp/src/server/TSimpleServer.cc [moved from lib/cpp/server/TSimpleServer.cc with 100% similarity]
lib/cpp/src/server/TSimpleServer.h [moved from lib/cpp/server/TSimpleServer.h with 100% similarity]
lib/cpp/src/transport/TBufferedTransport.cc [moved from lib/cpp/transport/TBufferedTransport.cc with 100% similarity]
lib/cpp/src/transport/TBufferedTransport.h [moved from lib/cpp/transport/TBufferedTransport.h with 100% similarity]
lib/cpp/src/transport/TNullTransport.h [moved from lib/cpp/transport/TNullTransport.h with 100% similarity]
lib/cpp/src/transport/TServerSocket.cc [moved from lib/cpp/transport/TServerSocket.cc with 100% similarity]
lib/cpp/src/transport/TServerSocket.h [moved from lib/cpp/transport/TServerSocket.h with 100% similarity]
lib/cpp/src/transport/TServerTransport.h [moved from lib/cpp/transport/TServerTransport.h with 100% similarity]
lib/cpp/src/transport/TSocket.cc [moved from lib/cpp/transport/TSocket.cc with 100% similarity]
lib/cpp/src/transport/TSocket.h [moved from lib/cpp/transport/TSocket.h with 100% similarity]
lib/cpp/src/transport/TTransport.h [moved from lib/cpp/transport/TTransport.h with 100% similarity]
lib/cpp/src/transport/TTransportException.h [moved from lib/cpp/transport/TTransportException.h with 100% similarity]

index f77c493..15664fa 100644 (file)
@@ -12,14 +12,14 @@ target: libthrift
 
 # Tools
 LD    = g++
-LDFL  = -shared -Wall -I. -fPIC -Wl,-soname=libthrift.so
+LDFL  = -shared -Wall -Isrc -fPIC -Wl,-soname=libthrift.so
 
 # Source files
-SRCS  = protocol/TBinaryProtocol.cc \
-       transport/TBufferedTransport.cc \
-       transport/TSocket.cc \
-       transport/TServerSocket.cc \
-       server/TSimpleServer.cc
+SRCS  = src/protocol/TBinaryProtocol.cc \
+       src/transport/TBufferedTransport.cc \
+       src/transport/TSocket.cc \
+       src/transport/TServerSocket.cc \
+       src/server/TSimpleServer.cc
 
 # Linked library
 libthrift:
similarity index 100%
rename from lib/cpp/Thrift.h
rename to lib/cpp/src/Thrift.h