20 lines
366 B
CMake
20 lines
366 B
CMake
aux_source_directory(src WAL_SRC)
|
|
add_library(wal STATIC ${WAL_SRC})
|
|
target_include_directories(
|
|
wal
|
|
PUBLIC "${TD_SOURCE_DIR}/include/libs/wal"
|
|
PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
|
|
)
|
|
|
|
target_link_libraries(
|
|
wal
|
|
PUBLIC cjson
|
|
PUBLIC os
|
|
PUBLIC util
|
|
PUBLIC common
|
|
)
|
|
|
|
if(${BUILD_TEST})
|
|
add_subdirectory(test)
|
|
endif(${BUILD_TEST})
|