change asvc to transport
This commit is contained in:
parent
eee1fd2fb2
commit
70fbff751d
|
@ -13,8 +13,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _TD_ASVC_H_
|
||||
#define _TD_ASVC_H_
|
||||
#ifndef _TD_TRANSPORT_H_
|
||||
#define _TD_TRANSPORT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -24,4 +24,4 @@ extern "C" {
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif /*_TD_ASVC_H_*/
|
||||
#endif /*_TD_TRANSPORT_H_*/
|
|
@ -1,4 +1,4 @@
|
|||
add_subdirectory(asvc)
|
||||
add_subdirectory(transport)
|
||||
add_subdirectory(raft)
|
||||
add_subdirectory(tkv)
|
||||
add_subdirectory(index)
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
aux_source_directory(src ASVC_SRC)
|
||||
add_library(asvc ${ASVC_SRC})
|
||||
target_include_directories(
|
||||
asvc
|
||||
PUBLIC "${CMAKE_SOURCE_DIR}/include/libs/asvc"
|
||||
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
||||
)
|
|
@ -0,0 +1,7 @@
|
|||
aux_source_directory(src TRANSPORT_SRC)
|
||||
add_library(transport ${TRANSPORT_SRC})
|
||||
target_include_directories(
|
||||
transport
|
||||
PUBLIC "${CMAKE_SOURCE_DIR}/include/libs/transport"
|
||||
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
||||
)
|
|
@ -13,8 +13,8 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
#ifndef _TD_ASVC_INT_H_
|
||||
#define _TD_ASVC_INT_H_
|
||||
#ifndef _TD_TRANSPORT_INT_H_
|
||||
#define _TD_TRANSPORT_INT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -24,4 +24,4 @@ extern "C" {
|
|||
}
|
||||
#endif
|
||||
|
||||
#endif /*_TD_ASVC_INT_H_*/
|
||||
#endif /*_TD_TRANSPORT_INT_H_*/
|
Loading…
Reference in New Issue