在我的一个项目中需要生成.ipk软件包吗?我尝试使用CPack。但是我没有成功。因为没有资源可用于在CPack中生成.ipk,我一无所知这是我的代码:: < / p>
cmake_minimum_required(VERSION 2.8.9)
project (strife-test)
file( GLOB APP_SOURCES src/*.c )
foreach( testsourcefile ${APP_SOURCES} )
get_filename_component(testname ${testsourcefile} NAME_WE)
add_executable( ${testname} ${testsourcefile} )
list(APPEND pack_cmp_list ${testname})
endforeach( testsourcefile ${APP_SOURCES} )
INSTALL(TARGETS ${pack_cmp_list} DESTINATION bin)
set(CPACK_GENERATOR "TZ")
include(cpack)