You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

se.vpj 9.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  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="automakefile"
  8. BuildMakeFile="makefile">
  9. <Config
  10. Name="Debug"
  11. Type="gnuc"
  12. DebugCallbackName="gdb"
  13. Version="1"
  14. OutputFile="%bdse.exe"
  15. CompilerConfigName="Latest Version">
  16. <Menu>
  17. <Target
  18. Name="Compile"
  19. MenuCaption="&amp;Compile"
  20. Dialog="_gnuc_options_form Compile"
  21. CaptureOutputWith="ProcessBuffer"
  22. Deletable="0"
  23. OutputExts="*.o"
  24. SaveOption="SaveCurrent"
  25. RunFromDir="%rw">
  26. <Exec CmdLine='gcc -c %xup %defd -g -o "%bd%n%oe" %i "%f"'/>
  27. </Target>
  28. <Target
  29. Name="Link"
  30. MenuCaption="&amp;Link"
  31. ShowOnMenu="Never"
  32. Dialog="_gnuc_options_form Link"
  33. CaptureOutputWith="ProcessBuffer"
  34. Deletable="0"
  35. SaveOption="SaveCurrent"
  36. RunFromDir="%rw">
  37. <Exec CmdLine='gcc %xup -g -o "%o" %f %libs'/>
  38. </Target>
  39. <Target
  40. Name="Build"
  41. MenuCaption="&amp;Build"
  42. CaptureOutputWith="ProcessBuffer"
  43. Deletable="0"
  44. SaveOption="SaveWorkspaceFiles"
  45. RunFromDir="%rw">
  46. <Exec CmdLine='make -f "makefile" CFG=%b'/>
  47. </Target>
  48. <Target
  49. Name="Rebuild"
  50. MenuCaption="&amp;Rebuild"
  51. CaptureOutputWith="ProcessBuffer"
  52. Deletable="0"
  53. SaveOption="SaveWorkspaceFiles"
  54. RunFromDir="%rw">
  55. <Exec CmdLine='make -f "makefile" rebuild CFG=%b'/>
  56. </Target>
  57. <Target
  58. Name="Debug"
  59. MenuCaption="&amp;Debug"
  60. Dialog="_gnuc_options_form Run/Debug"
  61. BuildFirst="1"
  62. CaptureOutputWith="ProcessBuffer"
  63. Deletable="0"
  64. SaveOption="SaveNone"
  65. RunFromDir="%rw">
  66. <Exec CmdLine='vsdebugio -prog "%o"'/>
  67. </Target>
  68. <Target
  69. Name="Execute"
  70. MenuCaption="E&amp;xecute"
  71. Dialog="_gnuc_options_form Run/Debug"
  72. BuildFirst="1"
  73. CaptureOutputWith="ProcessBuffer"
  74. Deletable="0"
  75. SaveOption="SaveWorkspaceFiles"
  76. RunFromDir="%rw">
  77. <Exec CmdLine='"%o"'/>
  78. </Target>
  79. <Target
  80. Name="dash"
  81. MenuCaption="-"
  82. Deletable="0">
  83. <Exec/>
  84. </Target>
  85. <Target
  86. Name="GNU C Options"
  87. MenuCaption="GNU C &amp;Options..."
  88. ShowOnMenu="HideIfNoCmdLine"
  89. Deletable="0"
  90. SaveOption="SaveNone">
  91. <Exec
  92. CmdLine="gnucoptions"
  93. Type="Slick-C"/>
  94. </Target>
  95. </Menu>
  96. <Rules Name="Compile">
  97. <Rule
  98. InputExts="*.ada"
  99. OutputExts="*.o"
  100. LinkObject="1">
  101. <Exec CmdLine='gnat -g -c -o "%bd%n.o" "%f"'/>
  102. </Rule>
  103. <Rule
  104. InputExts="*.adb"
  105. OutputExts="*.o"
  106. LinkObject="1">
  107. <Exec CmdLine='gnat -g -c -o "%bd%n.o" "%f"'/>
  108. </Rule>
  109. <Rule
  110. InputExts="*.f"
  111. OutputExts="*.o"
  112. LinkObject="1">
  113. <Exec CmdLine='gfortran -c -g -o "%bd%n.o" "%f"'/>
  114. </Rule>
  115. <Rule
  116. InputExts="*.f90"
  117. OutputExts="*.o"
  118. LinkObject="1">
  119. <Exec CmdLine='gfortran -c -g -o "%bd%n.o" "%f"'/>
  120. </Rule>
  121. <Rule
  122. InputExts="*.d"
  123. OutputExts="*.o"
  124. LinkObject="1">
  125. <Exec CmdLine='gdc -c -g -o "%bd%n.o" "%f"'/>
  126. </Rule>
  127. </Rules>
  128. <List Name="GNUC Options">
  129. <Item
  130. Name="LinkerOutputType"
  131. Value="Executable"/>
  132. </List>
  133. </Config>
  134. <Config
  135. Name="Release"
  136. Type="gnuc"
  137. DebugCallbackName="gdb"
  138. Version="1"
  139. OutputFile="%bdse.exe"
  140. CompilerConfigName="Latest Version">
  141. <Menu>
  142. <Target
  143. Name="Compile"
  144. MenuCaption="&amp;Compile"
  145. Dialog="_gnuc_options_form Compile"
  146. CaptureOutputWith="ProcessBuffer"
  147. Deletable="0"
  148. OutputExts="*.o"
  149. SaveOption="SaveCurrent"
  150. RunFromDir="%rw">
  151. <Exec CmdLine='gcc -c %xup %defd -o "%bd%n%oe" %i "%f"'/>
  152. </Target>
  153. <Target
  154. Name="Link"
  155. MenuCaption="&amp;Link"
  156. ShowOnMenu="Never"
  157. Dialog="_gnuc_options_form Link"
  158. CaptureOutputWith="ProcessBuffer"
  159. Deletable="0"
  160. SaveOption="SaveCurrent"
  161. RunFromDir="%rw">
  162. <Exec CmdLine='gcc %xup -o "%o" %f %libs'/>
  163. </Target>
  164. <Target
  165. Name="Build"
  166. MenuCaption="&amp;Build"
  167. CaptureOutputWith="ProcessBuffer"
  168. Deletable="0"
  169. SaveOption="SaveWorkspaceFiles"
  170. RunFromDir="%rw">
  171. <Exec CmdLine='make -f "makefile" CFG=%b'/>
  172. </Target>
  173. <Target
  174. Name="Rebuild"
  175. MenuCaption="&amp;Rebuild"
  176. CaptureOutputWith="ProcessBuffer"
  177. Deletable="0"
  178. SaveOption="SaveWorkspaceFiles"
  179. RunFromDir="%rw">
  180. <Exec CmdLine='make -f "makefile" rebuild CFG=%b'/>
  181. </Target>
  182. <Target
  183. Name="Debug"
  184. MenuCaption="&amp;Debug"
  185. Dialog="_gnuc_options_form Run/Debug"
  186. BuildFirst="1"
  187. CaptureOutputWith="ProcessBuffer"
  188. Deletable="0"
  189. SaveOption="SaveNone"
  190. RunFromDir="%rw">
  191. <Exec CmdLine='vsdebugio -prog "%o"'/>
  192. </Target>
  193. <Target
  194. Name="Execute"
  195. MenuCaption="E&amp;xecute"
  196. Dialog="_gnuc_options_form Run/Debug"
  197. BuildFirst="1"
  198. CaptureOutputWith="ProcessBuffer"
  199. Deletable="0"
  200. SaveOption="SaveWorkspaceFiles"
  201. RunFromDir="%rw">
  202. <Exec CmdLine='"%o"'/>
  203. </Target>
  204. <Target
  205. Name="dash"
  206. MenuCaption="-"
  207. Deletable="0">
  208. <Exec/>
  209. </Target>
  210. <Target
  211. Name="GNU C Options"
  212. MenuCaption="GNU C &amp;Options..."
  213. ShowOnMenu="HideIfNoCmdLine"
  214. Deletable="0"
  215. SaveOption="SaveNone">
  216. <Exec
  217. CmdLine="gnucoptions"
  218. Type="Slick-C"/>
  219. </Target>
  220. </Menu>
  221. <Rules Name="Compile">
  222. <Rule
  223. InputExts="*.ada"
  224. OutputExts="*.o"
  225. LinkObject="1">
  226. <Exec CmdLine='gnat -O -c -o "%bd%n.o" "%f"'/>
  227. </Rule>
  228. <Rule
  229. InputExts="*.adb"
  230. OutputExts="*.o"
  231. LinkObject="1">
  232. <Exec CmdLine='gnat -O -c -o "%bd%n.o" "%f"'/>
  233. </Rule>
  234. <Rule
  235. InputExts="*.f"
  236. OutputExts="*.o"
  237. LinkObject="1">
  238. <Exec CmdLine='gfortran -O -g -o "%bd%n.o" "%f"'/>
  239. </Rule>
  240. <Rule
  241. InputExts="*.f90"
  242. OutputExts="*.o"
  243. LinkObject="1">
  244. <Exec CmdLine='gfortran -O -g -o "%bd%n.o" "%f"'/>
  245. </Rule>
  246. <Rule
  247. InputExts="*.d"
  248. OutputExts="*.o"
  249. LinkObject="1">
  250. <Exec CmdLine='gdc -c -g -o "%bd%n.o" "%f"'/>
  251. </Rule>
  252. </Rules>
  253. <List Name="GNUC Options">
  254. <Item
  255. Name="LinkerOutputType"
  256. Value="Executable"/>
  257. </List>
  258. </Config>
  259. <Files>
  260. <Folder
  261. Name="Source Files"
  262. 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"
  263. GUID="{37CEAD61-A716-4AEA-BC0A-91918561B6EA}">
  264. <F N="slist.c"/>
  265. </Folder>
  266. <Folder
  267. Name="Header Files"
  268. Filters="*.h;*.H;*.hh;*.hpp;*.hxx;*.h++;*.inc;*.sh;*.cpy;*.if"
  269. GUID="{603D1B56-852E-42D2-BC8C-373815D8AE40}">
  270. <F N="slist.h"/>
  271. </Folder>
  272. <Folder
  273. Name="Resource Files"
  274. Filters="*.ico;*.cur;*.dlg"
  275. GUID="{0869122B-FA2C-4353-B17D-F501C029B843}"/>
  276. <Folder
  277. Name="Bitmaps"
  278. Filters="*.bmp"
  279. GUID="{B64C7A96-D24B-4AB1-8E1F-A5E939F978E3}"/>
  280. <Folder
  281. Name="Other Files"
  282. Filters=""
  283. GUID="{4D0CAAFD-5325-4A7F-943B-14024E3CA7A4}">
  284. <F
  285. N="makefile"
  286. Type="Makefile"/>
  287. </Folder>
  288. </Files>
  289. <List Name="RTE">
  290. </List>
  291. </Project>