CMakeLists.txt 316 字节
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8
aux_source_directory(src CONFIG_SRC)
add_library(config ${CONFIG_SRC})
target_include_directories(
    config
    PUBLIC "${CMAKE_SOURCE_DIR}/include/libs/config"
    PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/inc"
)

S
Shengliang Guan 已提交
9
target_link_libraries(config os util)
S
Shengliang Guan 已提交
10 11 12 13

if(${BUILD_TEST})
    ADD_SUBDIRECTORY(test)
endif(${BUILD_TEST})