CMakeLists.txt 293 字节
Newer Older
H
hzcheng 已提交
1 2 3
aux_source_directory(${CMAKE_CURRENT_SOURCE_DIR}/src SOURCE_LIST)

add_library(common ${SOURCE_LIST})
H
hzcheng 已提交
4 5 6 7 8 9
target_include_directories(
    common 
        PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/inc
        PUBLIC ${CMAKE_SOURCE_DIR}/src/inc
        PUBLIC ${CMAKE_SOURCE_DIR}/src/os/linux/inc
        )