解析乙個Wince的專案檔案

2021-05-23 22:51:32 字數 1219 閱讀 5801

.vcproj是xml檔案;

projecttype="visual c++"  此專案的型別

version="8.00"  vc8

name="test"   專案的名稱

projectguid="" 專案guid

keyword="win32proj"  win32project

有幾個子節點:platforms;toolfiles;configurations;references;files;globals;

platforms描述了sdk的資訊;

name="debug|sdk_ce6 (armv4i)"  配置選項名稱

outputdirectory="$(platformname)/$(configurationname)"  輸出路徑

intermediatedirectory="$(platformname)/$(configurationname)"  中間路徑

configurationtype="1"   工程型別;1表示exe;2表示dll; 3表示lib;

characterset="1"  字符集,1表示unicode;2表示gb;

vcclcompilertool:

optimization="0" 優化選項

preprocessordefinitions 預定義標記

runtimelibrary="1"   程式執行時庫;

useprecompiledheader="2" 預定義標頭檔案

warninglevel="3"  警告級別

vclinkertool:

additionaloptions=" /subsystem:windowsce,6.00"  依賴的庫檔案

outputfile="$(outdir)/test.exe"  輸出

linkincremental="2"  增量編譯

generatedebuginformation="true"  產生除錯資訊

programdatabasefile="$(outdir)/test.pdb"  除錯資訊檔名

subsystem="0"  子系統

files有幾個子節點,分別為標頭檔案、原始檔、資源檔案和說明檔案;

其中標頭檔案、原始檔和資源檔案是有filter的!

只有滿足條件的檔案才能被新增!

以標頭檔案為例,它的filter是filter="h;hpp;hxx;hm;inl;inc;xsd"

深入解析Vue專案每乙個資料夾及檔案

這裡對vue專案的每乙個檔案以及資料夾做乙個詳解,下面經常編輯 修改使用的資料夾會加粗標紅 1 build 資料夾 裡面是對 webpack 開發和打包的相關設定,包括入口檔案,輸出檔案,使用的模組等。2 config 資料夾 主要是指定開發和打包中的靜態資源路徑,要壓縮的檔案型別,開發使用的埠號。...

parse ini file 解析乙個配置檔案

說明 parse ini file string filename bool process sections false int scanner mode ini scanner normal array parse ini file 載入乙個由 filename 指定的 ini 檔案,並將其中的...

我的第乙個WINCE驅動

早在兩年前就開始做wince 應用程式了,但是由於分工的原因,一直以來都沒有機會深入了解wince 驅動層面的開發 包含pb 相關的系統定製 要不是前段時間馬寧安排了fakegps 開發工作,真不知道什麼時候才能了解wince 驅動開發。fakegps 從字面理解就是偽裝的gps 也就是說,開啟的乙...