1# rga_config_thread_core_demo 2add_executable(rga_config_thread_core_demo 3 rga_config_thread_core_demo.cpp 4) 5target_link_libraries(rga_config_thread_core_demo 6 utils_obj 7 ${RGA_LIB} 8) 9install(TARGETS rga_config_thread_core_demo DESTINATION ${CMAKE_INSTALL_BINDIR}) 10 11# rga_config_single_core_demo 12add_executable(rga_config_single_core_demo 13 rga_config_single_core_demo.cpp 14) 15target_link_libraries(rga_config_single_core_demo 16 utils_obj 17 ${RGA_LIB} 18) 19install(TARGETS rga_config_single_core_demo DESTINATION ${CMAKE_INSTALL_BINDIR}) 20