1# rga_async_demo 2SET(DEMO_NAME rga_async_demo) 3add_executable(${DEMO_NAME} 4 ${DEMO_NAME}.cpp 5) 6target_link_libraries(${DEMO_NAME} 7 utils_obj 8 ${RGA_LIB} 9) 10install(TARGETS ${DEMO_NAME} DESTINATION ${CMAKE_INSTALL_BINDIR}) 11 12