您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

se.vpj 10.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <!DOCTYPE Project SYSTEM "http://www.slickedit.com/dtd/vse/10.0/vpj.dtd">
  2. <Project
  3. Version="10.0"
  4. VendorName="SlickEdit"
  5. TemplateName="GNU C/C++"
  6. WorkingDir="."
  7. BuildSystem="vsbuild">
  8. <Config
  9. Name="Debug"
  10. Type="gnuc"
  11. DebugCallbackName="gdb"
  12. Version="1"
  13. OutputFile="%bdse.exe"
  14. CompilerConfigName="Latest Version">
  15. <Menu>
  16. <Target
  17. Name="Compile"
  18. MenuCaption="&amp;Compile"
  19. Dialog="_gnuc_options_form Compile"
  20. CaptureOutputWith="ProcessBuffer"
  21. Deletable="0"
  22. OutputExts="*.o"
  23. SaveOption="SaveCurrent"
  24. RunFromDir="%rw">
  25. <Exec CmdLine='gcc -c %xup %defd -g -o "%bd%n%oe" %i "%f"'/>
  26. </Target>
  27. <Target
  28. Name="Link"
  29. MenuCaption="&amp;Link"
  30. ShowOnMenu="Never"
  31. Dialog="_gnuc_options_form Link"
  32. CaptureOutputWith="ProcessBuffer"
  33. Deletable="0"
  34. SaveOption="SaveCurrent"
  35. RunFromDir="%rw">
  36. <Exec CmdLine='gcc %xup -g -o "%o" %f %libs'/>
  37. </Target>
  38. <Target
  39. Name="Build"
  40. MenuCaption="&amp;Build"
  41. Dialog="_gnuc_options_form Compile"
  42. CaptureOutputWith="ProcessBuffer"
  43. Deletable="0"
  44. SaveOption="SaveWorkspaceFiles"
  45. RunFromDir="%rw">
  46. <Exec CmdLine='"%(VSLICKBIN1)vsbuild" "%w" "%r" -t build'/>
  47. </Target>
  48. <Target
  49. Name="Rebuild"
  50. MenuCaption="&amp;Rebuild"
  51. Dialog="_gnuc_options_form Compile"
  52. CaptureOutputWith="ProcessBuffer"
  53. Deletable="0"
  54. SaveOption="SaveWorkspaceFiles"
  55. RunFromDir="%rw">
  56. <Exec CmdLine='"%(VSLICKBIN1)vsbuild" "%w" "%r" -t rebuild'/>
  57. </Target>
  58. <Target
  59. Name="Debug"
  60. MenuCaption="&amp;Debug"
  61. Dialog="_gnuc_options_form Run/Debug"
  62. BuildFirst="1"
  63. CaptureOutputWith="ProcessBuffer"
  64. Deletable="0"
  65. SaveOption="SaveNone"
  66. RunFromDir="%rw">
  67. <Exec CmdLine='vsdebugio -prog "%o"'/>
  68. </Target>
  69. <Target
  70. Name="Execute"
  71. MenuCaption="E&amp;xecute"
  72. Dialog="_gnuc_options_form Run/Debug"
  73. BuildFirst="1"
  74. CaptureOutputWith="ProcessBuffer"
  75. Deletable="0"
  76. SaveOption="SaveWorkspaceFiles"
  77. RunFromDir="%rw">
  78. <Exec CmdLine='"%o"'/>
  79. </Target>
  80. <Target
  81. Name="dash"
  82. MenuCaption="-"
  83. Deletable="0">
  84. <Exec/>
  85. </Target>
  86. <Target
  87. Name="GNU C Options"
  88. MenuCaption="GNU C &amp;Options..."
  89. ShowOnMenu="HideIfNoCmdLine"
  90. Deletable="0"
  91. SaveOption="SaveNone">
  92. <Exec
  93. CmdLine="gnucoptions"
  94. Type="Slick-C"/>
  95. </Target>
  96. </Menu>
  97. <Rules Name="Compile">
  98. <Rule
  99. InputExts="*.ada"
  100. OutputExts="*.o"
  101. LinkObject="1">
  102. <Exec CmdLine='gnat -g -c -o "%bd%n.o" "%f"'/>
  103. </Rule>
  104. <Rule
  105. InputExts="*.adb"
  106. OutputExts="*.o"
  107. LinkObject="1">
  108. <Exec CmdLine='gnat -g -c -o "%bd%n.o" "%f"'/>
  109. </Rule>
  110. <Rule
  111. InputExts="*.f"
  112. OutputExts="*.o"
  113. LinkObject="1">
  114. <Exec CmdLine='gfortran -c -g -o "%bd%n.o" "%f"'/>
  115. </Rule>
  116. <Rule
  117. InputExts="*.f90"
  118. OutputExts="*.o"
  119. LinkObject="1">
  120. <Exec CmdLine='gfortran -c -g -o "%bd%n.o" "%f"'/>
  121. </Rule>
  122. <Rule
  123. InputExts="*.d"
  124. OutputExts="*.o"
  125. LinkObject="1">
  126. <Exec CmdLine='gdc -c -g -o "%bd%n.o" "%f"'/>
  127. </Rule>
  128. </Rules>
  129. <List Name="GNUC Options">
  130. <Item
  131. Name="LinkerOutputType"
  132. Value="Executable"/>
  133. </List>
  134. </Config>
  135. <Config
  136. Name="Release"
  137. Type="gnuc"
  138. DebugCallbackName="gdb"
  139. Version="1"
  140. OutputFile="%bdse.exe"
  141. CompilerConfigName="Latest Version">
  142. <Menu>
  143. <Target
  144. Name="Compile"
  145. MenuCaption="&amp;Compile"
  146. Dialog="_gnuc_options_form Compile"
  147. CaptureOutputWith="ProcessBuffer"
  148. Deletable="0"
  149. OutputExts="*.o"
  150. SaveOption="SaveCurrent"
  151. RunFromDir="%rw">
  152. <Exec CmdLine='gcc -c %xup %defd -o "%bd%n%oe" %i "%f"'/>
  153. </Target>
  154. <Target
  155. Name="Link"
  156. MenuCaption="&amp;Link"
  157. ShowOnMenu="Never"
  158. Dialog="_gnuc_options_form Link"
  159. CaptureOutputWith="ProcessBuffer"
  160. Deletable="0"
  161. SaveOption="SaveCurrent"
  162. RunFromDir="%rw">
  163. <Exec CmdLine='gcc %xup -o "%o" %f %libs'/>
  164. </Target>
  165. <Target
  166. Name="Build"
  167. MenuCaption="&amp;Build"
  168. Dialog="_gnuc_options_form Compile"
  169. CaptureOutputWith="ProcessBuffer"
  170. Deletable="0"
  171. SaveOption="SaveWorkspaceFiles"
  172. RunFromDir="%rw">
  173. <Exec CmdLine='"%(VSLICKBIN1)vsbuild" "%w" "%r" -t build'/>
  174. </Target>
  175. <Target
  176. Name="Rebuild"
  177. MenuCaption="&amp;Rebuild"
  178. Dialog="_gnuc_options_form Compile"
  179. CaptureOutputWith="ProcessBuffer"
  180. Deletable="0"
  181. SaveOption="SaveWorkspaceFiles"
  182. RunFromDir="%rw">
  183. <Exec CmdLine='"%(VSLICKBIN1)vsbuild" "%w" "%r" -t rebuild'/>
  184. </Target>
  185. <Target
  186. Name="Debug"
  187. MenuCaption="&amp;Debug"
  188. Dialog="_gnuc_options_form Run/Debug"
  189. BuildFirst="1"
  190. CaptureOutputWith="ProcessBuffer"
  191. Deletable="0"
  192. SaveOption="SaveNone"
  193. RunFromDir="%rw">
  194. <Exec CmdLine='vsdebugio -prog "%o"'/>
  195. </Target>
  196. <Target
  197. Name="Execute"
  198. MenuCaption="E&amp;xecute"
  199. Dialog="_gnuc_options_form Run/Debug"
  200. BuildFirst="1"
  201. CaptureOutputWith="ProcessBuffer"
  202. Deletable="0"
  203. SaveOption="SaveWorkspaceFiles"
  204. RunFromDir="%rw">
  205. <Exec CmdLine='"%o"'/>
  206. </Target>
  207. <Target
  208. Name="dash"
  209. MenuCaption="-"
  210. Deletable="0">
  211. <Exec/>
  212. </Target>
  213. <Target
  214. Name="GNU C Options"
  215. MenuCaption="GNU C &amp;Options..."
  216. ShowOnMenu="HideIfNoCmdLine"
  217. Deletable="0"
  218. SaveOption="SaveNone">
  219. <Exec
  220. CmdLine="gnucoptions"
  221. Type="Slick-C"/>
  222. </Target>
  223. </Menu>
  224. <Rules Name="Compile">
  225. <Rule
  226. InputExts="*.ada"
  227. OutputExts="*.o"
  228. LinkObject="1">
  229. <Exec CmdLine='gnat -O -c -o "%bd%n.o" "%f"'/>
  230. </Rule>
  231. <Rule
  232. InputExts="*.adb"
  233. OutputExts="*.o"
  234. LinkObject="1">
  235. <Exec CmdLine='gnat -O -c -o "%bd%n.o" "%f"'/>
  236. </Rule>
  237. <Rule
  238. InputExts="*.f"
  239. OutputExts="*.o"
  240. LinkObject="1">
  241. <Exec CmdLine='gfortran -O -g -o "%bd%n.o" "%f"'/>
  242. </Rule>
  243. <Rule
  244. InputExts="*.f90"
  245. OutputExts="*.o"
  246. LinkObject="1">
  247. <Exec CmdLine='gfortran -O -g -o "%bd%n.o" "%f"'/>
  248. </Rule>
  249. <Rule
  250. InputExts="*.d"
  251. OutputExts="*.o"
  252. LinkObject="1">
  253. <Exec CmdLine='gdc -c -g -o "%bd%n.o" "%f"'/>
  254. </Rule>
  255. </Rules>
  256. <List Name="GNUC Options">
  257. <Item
  258. Name="LinkerOutputType"
  259. Value="Executable"/>
  260. </List>
  261. </Config>
  262. <Files>
  263. <Folder
  264. Name="Source Files"
  265. Filters="*.c;*.C;*.cc;*.cpp;*.cp;*.cxx;*.c++;*.prg;*.pas;*.dpr;*.asm;*.s;*.bas;*.java;*.cs;*.sc;*.scala;*.e;*.cob;*.html;*.rc;*.tcl;*.py;*.pl;*.d;*.m;*.mm;*.go;*.groovy;*.gsh"
  266. GUID="{3236A226-CEA1-4DD0-B9B5-CD3DDB35C564}">
  267. <F N="../btree.c"/>
  268. <F N="../linkqueue.c"/>
  269. </Folder>
  270. <Folder
  271. Name="Header Files"
  272. Filters="*.h;*.H;*.hh;*.hpp;*.hxx;*.h++;*.inc;*.sh;*.cpy;*.if"
  273. GUID="{BE7CCD9A-76F8-4460-810D-ADBF87730D8E}">
  274. <F N="../btree.h"/>
  275. <F N="../linkqueue.h"/>
  276. </Folder>
  277. <Folder
  278. Name="Resource Files"
  279. Filters="*.ico;*.cur;*.dlg"
  280. GUID="{C8B39CBE-97C4-4477-89B1-99730A70A7A5}"/>
  281. <Folder
  282. Name="Bitmaps"
  283. Filters="*.bmp"
  284. GUID="{D3D6D498-5930-4514-A47B-BDF0DE21883D}"/>
  285. <Folder
  286. Name="Other Files"
  287. Filters=""
  288. GUID="{955B53DC-0E30-4357-92CF-7D12D9F4A6AA}">
  289. <F
  290. N="../makefile"
  291. Type="Makefile"/>
  292. </Folder>
  293. </Files>
  294. <List Name="RTE">
  295. </List>
  296. </Project>