summaryrefslogtreecommitdiff
path: root/runtime/libs/rua/anchor/CMakeLists.txt
blob: fb41c47ea22b5d153ce1156df16f81f3c30bbae5 (plain)
1
2
3
4
5
6
7
8
file(GLOB_RECURSE SOURCES "src/*.cpp")

add_library(nnfw_lib_rua_anchor STATIC ${SOURCES})
set_target_properties(nnfw_lib_rua_anchor PROPERTIES POSITION_INDEPENDENT_CODE ON)
target_include_directories(nnfw_lib_rua_anchor PUBLIC include)
target_link_libraries(nnfw_lib_rua_anchor PUBLIC nnfw_lib_rua_core)
target_link_libraries(nnfw_lib_rua_anchor PRIVATE nnfw_lib_rua_dyn)
target_link_libraries(nnfw_lib_rua_anchor PRIVATE nnfw_common)