DEPLOYMENT_ADDITIONAL_FILES¶
在版本 3.13 中新增。
設定 WinCE 專案的 AdditionalFiles
屬性,此屬性位於 DeploymentTool
的 .vcproj
檔案中,而這些檔案是由 Visual Studio Generators 所產生。當您需要在遠端 WinCE 裝置上進行除錯時,這功能相當實用。您可以指定額外的檔案,這些檔案將會被複製到裝置上。例如
set_property(TARGET ${TARGET} PROPERTY
DEPLOYMENT_ADDITIONAL_FILES "english.lng|local_folder|remote_folder|0"
"german.lng|local_folder|remote_folder|0")
產生
<DeploymentTool AdditionalFiles="english.lng|local_folder|remote_folder|0;german.lng|local_folder|remote_folder|0" ... />