GCSx.dev 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. [Project]
  2. FileName=GCSx.dev
  3. Name=GCSx
  4. UnitCount=183
  5. Type=0
  6. Ver=1
  7. ObjFiles=
  8. Includes=..\include\sdl;..\include;..\include\freetype2;..\gcsx\include
  9. Libs=..\lib
  10. PrivateResource=GCSx_private.rc
  11. ResourceIncludes=
  12. MakeIncludes=
  13. Compiler=-DNDEBUG_@@_
  14. CppCompiler=-Wall -DNDEBUG_@@_
  15. Linker=-lmingw32 -lSDLmain -lSDL -lfreetype -lzdll -llibpng -lopengl32 -lglu32_@@_
  16. IsCpp=1
  17. Icon=
  18. ExeOutput=..\gcsx
  19. ObjectOutput=..\obj
  20. OverrideOutput=0
  21. OverrideOutputName=GCSx.exe
  22. HostApplication=
  23. Folders=docs,headers,libs
  24. CommandLine=
  25. IncludeVersionInfo=1
  26. SupportXPThemes=0
  27. CompilerSet=0
  28. CompilerSettings=0000000000010000000000
  29. UseCustomMakefile=0
  30. CustomMakefile=
  31. [VersionInfo]
  32. Major=0
  33. Minor=0
  34. Release=6
  35. Build=1672
  36. LanguageID=1033
  37. CharsetID=1252
  38. CompanyName=
  39. FileVersion=
  40. FileDescription=
  41. InternalName=
  42. LegalCopyright=Alexis Janson
  43. LegalTrademarks=
  44. OriginalFilename=
  45. ProductName=GCSx
  46. ProductVersion=
  47. AutoIncBuildNr=1
  48. [Unit4]
  49. FileName=gcsx_exception.cpp
  50. CompileCpp=1
  51. Folder=
  52. Compile=1
  53. Link=1
  54. Priority=1000
  55. OverrideBuildCmd=0
  56. BuildCmd=
  57. [Unit6]
  58. FileName=gcsx_graphics.cpp
  59. CompileCpp=1
  60. Folder=
  61. Compile=1
  62. Link=1
  63. Priority=1000
  64. OverrideBuildCmd=0
  65. BuildCmd=
  66. [Unit7]
  67. FileName=gcsx_gui.cpp
  68. CompileCpp=1
  69. Folder=
  70. Compile=1
  71. Link=1
  72. Priority=1000
  73. OverrideBuildCmd=0
  74. BuildCmd=
  75. [Unit8]
  76. FileName=gcsx_main.cpp
  77. CompileCpp=1
  78. Folder=
  79. Compile=1
  80. Link=1
  81. Priority=1000
  82. OverrideBuildCmd=0
  83. BuildCmd=
  84. [Unit9]
  85. FileName=gcsx_mem.cpp
  86. CompileCpp=1
  87. Folder=
  88. Compile=1
  89. Link=1
  90. Priority=1000
  91. OverrideBuildCmd=0
  92. BuildCmd=
  93. [Unit5]
  94. FileName=gcsx_frame.cpp
  95. CompileCpp=1
  96. Folder=
  97. Compile=1
  98. Link=1
  99. Priority=1000
  100. OverrideBuildCmd=0
  101. BuildCmd=
  102. [Unit10]
  103. FileName=gcsx_mouse.cpp
  104. CompileCpp=1
  105. Folder=
  106. Compile=1
  107. Link=1
  108. Priority=1000
  109. OverrideBuildCmd=0
  110. BuildCmd=
  111. [Unit13]
  112. FileName=include\gcsx_debug.h
  113. CompileCpp=1
  114. Folder=headers
  115. Compile=1
  116. Link=1
  117. Priority=1000
  118. OverrideBuildCmd=0
  119. BuildCmd=
  120. [Unit14]
  121. FileName=include\gcsx_dialog.h
  122. CompileCpp=1
  123. Folder=headers
  124. Compile=1
  125. Link=1
  126. Priority=1000
  127. OverrideBuildCmd=0
  128. BuildCmd=
  129. [Unit18]
  130. FileName=include\gcsx_gui.h
  131. CompileCpp=1
  132. Folder=headers
  133. Compile=1
  134. Link=1
  135. Priority=1000
  136. OverrideBuildCmd=0
  137. BuildCmd=
  138. [Unit19]
  139. FileName=include\gcsx_mem.h
  140. CompileCpp=1
  141. Folder=headers
  142. Compile=1
  143. Link=1
  144. Priority=1000
  145. OverrideBuildCmd=0
  146. BuildCmd=
  147. [Unit21]
  148. FileName=include\gcsx_popup.h
  149. CompileCpp=1
  150. Folder=headers
  151. Compile=1
  152. Link=1
  153. Priority=1000
  154. OverrideBuildCmd=0
  155. BuildCmd=
  156. [Unit22]
  157. FileName=doc\gcs-bytecode.html
  158. CompileCpp=1
  159. Folder=docs
  160. Compile=0
  161. Link=0
  162. Priority=1000
  163. OverrideBuildCmd=0
  164. BuildCmd=
  165. [Unit24]
  166. FileName=doc\gcs-outline.html
  167. CompileCpp=1
  168. Folder=docs
  169. Compile=0
  170. Link=0
  171. Priority=1000
  172. OverrideBuildCmd=0
  173. BuildCmd=
  174. [Unit25]
  175. FileName=doc\gcs-ref.html
  176. Folder=docs
  177. Compile=0
  178. Link=0
  179. Priority=1000
  180. OverrideBuildCmd=0
  181. BuildCmd=
  182. CompileCpp=1
  183. [Unit27]
  184. FileName=doc\outline-work.txt
  185. Folder=docs
  186. Compile=0
  187. Link=0
  188. Priority=1000
  189. OverrideBuildCmd=0
  190. BuildCmd=
  191. CompileCpp=1
  192. [Unit28]
  193. FileName=SDL_ttf.c
  194. Folder=libs
  195. Compile=1
  196. Link=1
  197. Priority=1000
  198. OverrideBuildCmd=0
  199. BuildCmd=
  200. CompileCpp=1
  201. [Unit29]
  202. FileName=include\SDL_ttf.h
  203. CompileCpp=1
  204. Folder=libs
  205. Compile=1
  206. Link=1
  207. Priority=1000
  208. OverrideBuildCmd=0
  209. BuildCmd=
  210. [Unit31]
  211. FileName=include\gcsx_event.h
  212. CompileCpp=1
  213. Folder=headers
  214. Compile=1
  215. Link=1
  216. Priority=1000
  217. OverrideBuildCmd=0
  218. BuildCmd=
  219. [Unit32]
  220. FileName=include\gcsx_clipboard.h
  221. CompileCpp=1
  222. Folder=headers
  223. Compile=1
  224. Link=1
  225. Priority=1000
  226. OverrideBuildCmd=0
  227. BuildCmd=
  228. [Unit33]
  229. FileName=gcsx_clipboard.cpp
  230. CompileCpp=1
  231. Folder=
  232. Compile=1
  233. Link=1
  234. Priority=1000
  235. OverrideBuildCmd=0
  236. BuildCmd=
  237. [Unit34]
  238. FileName=include\gcsx_list.h
  239. Folder=headers
  240. Compile=1
  241. Link=1
  242. Priority=1000
  243. OverrideBuildCmd=0
  244. BuildCmd=
  245. CompileCpp=1
  246. [Unit35]
  247. FileName=include\gcsx_wscroll.h
  248. Folder=headers
  249. Compile=1
  250. Link=1
  251. Priority=1000
  252. OverrideBuildCmd=0
  253. BuildCmd=
  254. CompileCpp=1
  255. [Unit36]
  256. FileName=gcsx_wscroll.cpp
  257. Folder=
  258. Compile=1
  259. Link=1
  260. Priority=1000
  261. OverrideBuildCmd=0
  262. BuildCmd=
  263. CompileCpp=1
  264. [Unit38]
  265. FileName=include\gcsx_resolution.h
  266. CompileCpp=1
  267. Folder=headers
  268. Compile=1
  269. Link=1
  270. Priority=1000
  271. OverrideBuildCmd=0
  272. BuildCmd=
  273. [Unit16]
  274. FileName=include\gcsx_frame.h
  275. CompileCpp=1
  276. Folder=headers
  277. Compile=1
  278. Link=1
  279. Priority=1000
  280. OverrideBuildCmd=0
  281. BuildCmd=
  282. [Unit39]
  283. FileName=gcsx_resolution.cpp
  284. CompileCpp=1
  285. Folder=
  286. Compile=1
  287. Link=1
  288. Priority=1000
  289. OverrideBuildCmd=0
  290. BuildCmd=
  291. [Unit40]
  292. FileName=include\gcsx_config.h
  293. CompileCpp=1
  294. Folder=headers
  295. Compile=1
  296. Link=1
  297. Priority=1000
  298. OverrideBuildCmd=0
  299. BuildCmd=
  300. [Unit41]
  301. FileName=gcsx_config.cpp
  302. CompileCpp=1
  303. Folder=
  304. Compile=1
  305. Link=1
  306. Priority=1000
  307. OverrideBuildCmd=0
  308. BuildCmd=
  309. [Unit42]
  310. FileName=gcsx_datatype.cpp
  311. CompileCpp=1
  312. Folder=
  313. Compile=1
  314. Link=1
  315. Priority=1000
  316. OverrideBuildCmd=0
  317. BuildCmd=
  318. [Unit43]
  319. FileName=include\gcsx_treeview.h
  320. CompileCpp=1
  321. Folder=headers
  322. Compile=1
  323. Link=1
  324. Priority=1000
  325. OverrideBuildCmd=0
  326. BuildCmd=
  327. [Unit44]
  328. FileName=gcsx_treeview.cpp
  329. CompileCpp=1
  330. Folder=
  331. Compile=1
  332. Link=1
  333. Priority=1000
  334. OverrideBuildCmd=0
  335. BuildCmd=
  336. [Unit45]
  337. FileName=include\gcsx_editor.h
  338. CompileCpp=1
  339. Folder=headers
  340. Compile=1
  341. Link=1
  342. Priority=1000
  343. OverrideBuildCmd=0
  344. BuildCmd=
  345. [Unit46]
  346. FileName=gcsx_editor.cpp
  347. CompileCpp=1
  348. Folder=
  349. Compile=1
  350. Link=1
  351. Priority=1000
  352. OverrideBuildCmd=0
  353. BuildCmd=
  354. [Unit48]
  355. FileName=gcsx_world.cpp
  356. CompileCpp=1
  357. Folder=
  358. Compile=1
  359. Link=1
  360. Priority=1000
  361. OverrideBuildCmd=0
  362. BuildCmd=
  363. [Unit50]
  364. FileName=gcsx_tileset.cpp
  365. CompileCpp=1
  366. Folder=
  367. Compile=1
  368. Link=1
  369. Priority=1000
  370. OverrideBuildCmd=0
  371. BuildCmd=
  372. [Unit51]
  373. FileName=gcsx_tilesetpaint.cpp
  374. CompileCpp=1
  375. Folder=
  376. Compile=1
  377. Link=1
  378. Priority=1000
  379. OverrideBuildCmd=0
  380. BuildCmd=
  381. [Unit52]
  382. FileName=gcsx_worldedit.cpp
  383. CompileCpp=1
  384. Folder=
  385. Compile=1
  386. Link=1
  387. Priority=1000
  388. OverrideBuildCmd=0
  389. BuildCmd=
  390. [Unit53]
  391. FileName=include\sge_primitives.h
  392. CompileCpp=1
  393. Folder=libs
  394. Compile=1
  395. Link=1
  396. Priority=1000
  397. OverrideBuildCmd=0
  398. BuildCmd=
  399. [Unit56]
  400. FileName=include\sge_surface.h
  401. CompileCpp=1
  402. Folder=libs
  403. Compile=1
  404. Link=1
  405. Priority=1000
  406. OverrideBuildCmd=0
  407. BuildCmd=
  408. [Unit57]
  409. FileName=sge_surface.cpp
  410. CompileCpp=1
  411. Folder=libs
  412. Compile=1
  413. Link=1
  414. Priority=1000
  415. OverrideBuildCmd=0
  416. BuildCmd=
  417. [Unit58]
  418. FileName=include\sge_config.h
  419. CompileCpp=1
  420. Folder=libs
  421. Compile=1
  422. Link=1
  423. Priority=1000
  424. OverrideBuildCmd=0
  425. BuildCmd=
  426. [Unit1]
  427. FileName=gcsx_all.cpp
  428. CompileCpp=1
  429. Folder=
  430. Compile=1
  431. Link=0
  432. Priority=500
  433. OverrideBuildCmd=1
  434. BuildCmd=$(CPP) -x c++-header -c include/all.h -o include/all.h.gch $(CXXFLAGS)
  435. [Unit2]
  436. FileName=gcsx_debug.cpp
  437. CompileCpp=1
  438. Folder=
  439. Compile=1
  440. Link=1
  441. Priority=1000
  442. OverrideBuildCmd=0
  443. BuildCmd=
  444. [Unit3]
  445. FileName=gcsx_dialog.cpp
  446. CompileCpp=1
  447. Folder=
  448. Compile=1
  449. Link=1
  450. Priority=1000
  451. OverrideBuildCmd=0
  452. BuildCmd=
  453. [Unit11]
  454. FileName=gcsx_popup.cpp
  455. CompileCpp=1
  456. Folder=
  457. Compile=1
  458. Link=1
  459. Priority=1000
  460. OverrideBuildCmd=0
  461. BuildCmd=
  462. [Unit12]
  463. FileName=include\gcsx_datatype.h
  464. CompileCpp=1
  465. Folder=headers
  466. Compile=1
  467. Link=1
  468. Priority=1000
  469. OverrideBuildCmd=0
  470. BuildCmd=
  471. [Unit15]
  472. FileName=include\gcsx_exception.h
  473. CompileCpp=1
  474. Folder=headers
  475. Compile=1
  476. Link=1
  477. Priority=1000
  478. OverrideBuildCmd=0
  479. BuildCmd=
  480. [Unit17]
  481. FileName=include\gcsx_graphics.h
  482. CompileCpp=1
  483. Folder=headers
  484. Compile=1
  485. Link=1
  486. Priority=1000
  487. OverrideBuildCmd=0
  488. BuildCmd=
  489. [Unit20]
  490. FileName=include\gcsx_mouse.h
  491. CompileCpp=1
  492. Folder=headers
  493. Compile=1
  494. Link=1
  495. Priority=1000
  496. OverrideBuildCmd=0
  497. BuildCmd=
  498. [Unit23]
  499. FileName=doc\gcs-included.html
  500. Folder=docs
  501. Compile=0
  502. Link=0
  503. Priority=1000
  504. OverrideBuildCmd=0
  505. BuildCmd=
  506. [Unit26]
  507. FileName=doc\gui-todo.txt
  508. Folder=docs
  509. Compile=0
  510. Link=0
  511. Priority=1000
  512. OverrideBuildCmd=0
  513. BuildCmd=
  514. [Unit37]
  515. FileName=gcsx_list.cpp
  516. CompileCpp=1
  517. Folder=
  518. Compile=1
  519. Link=1
  520. Priority=1000
  521. OverrideBuildCmd=0
  522. BuildCmd=
  523. [Unit47]
  524. FileName=include\gcsx_world.h
  525. CompileCpp=1
  526. Folder=headers
  527. Compile=1
  528. Link=1
  529. Priority=1000
  530. OverrideBuildCmd=0
  531. BuildCmd=
  532. [Unit49]
  533. FileName=include\gcsx_tileset.h
  534. CompileCpp=1
  535. Folder=headers
  536. Compile=1
  537. Link=1
  538. Priority=1000
  539. OverrideBuildCmd=0
  540. BuildCmd=
  541. [Unit54]
  542. FileName=sge_primitives.cpp
  543. CompileCpp=1
  544. Folder=libs
  545. Compile=1
  546. Link=1
  547. Priority=1000
  548. OverrideBuildCmd=0
  549. BuildCmd=
  550. [Unit55]
  551. FileName=include\sge_internal.h
  552. CompileCpp=1
  553. Folder=libs
  554. Compile=1
  555. Link=1
  556. Priority=1000
  557. OverrideBuildCmd=0
  558. BuildCmd=
  559. [Unit61]
  560. FileName=include\gcsx_tilesetpaint.h
  561. CompileCpp=1
  562. Folder=headers
  563. Compile=1
  564. Link=1
  565. Priority=1000
  566. OverrideBuildCmd=0
  567. BuildCmd=
  568. [Unit60]
  569. FileName=include\gcsx_slider.h
  570. CompileCpp=1
  571. Folder=headers
  572. Compile=1
  573. Link=1
  574. Priority=1000
  575. OverrideBuildCmd=0
  576. BuildCmd=
  577. [Unit59]
  578. FileName=gcsx_slider.cpp
  579. CompileCpp=1
  580. Folder=
  581. Compile=1
  582. Link=1
  583. Priority=1000
  584. OverrideBuildCmd=0
  585. BuildCmd=
  586. [Unit62]
  587. FileName=include\gcsx_tilesetbrowse.h
  588. CompileCpp=1
  589. Folder=headers
  590. Compile=1
  591. Link=1
  592. Priority=1000
  593. OverrideBuildCmd=0
  594. BuildCmd=
  595. [Unit63]
  596. FileName=gcsx_tilesetbrowse.cpp
  597. CompileCpp=1
  598. Folder=
  599. Compile=1
  600. Link=1
  601. Priority=1000
  602. OverrideBuildCmd=0
  603. BuildCmd=
  604. [Unit64]
  605. FileName=gcsx_tilesetprop.cpp
  606. CompileCpp=1
  607. Folder=
  608. Compile=1
  609. Link=1
  610. Priority=1000
  611. OverrideBuildCmd=0
  612. BuildCmd=
  613. [Unit65]
  614. FileName=include\gcsx_tilesetedit.h
  615. CompileCpp=1
  616. Folder=headers
  617. Compile=1
  618. Link=1
  619. Priority=1000
  620. OverrideBuildCmd=0
  621. BuildCmd=
  622. [Unit66]
  623. FileName=gcsx_tilesetedit.cpp
  624. CompileCpp=1
  625. Folder=
  626. Compile=1
  627. Link=1
  628. Priority=1000
  629. OverrideBuildCmd=0
  630. BuildCmd=
  631. [Unit67]
  632. FileName=gcsx_color.cpp
  633. CompileCpp=1
  634. Folder=
  635. Compile=1
  636. Link=1
  637. Priority=1000
  638. OverrideBuildCmd=0
  639. BuildCmd=
  640. [Unit68]
  641. FileName=include\gcsx_color.h
  642. CompileCpp=1
  643. Folder=headers
  644. Compile=1
  645. Link=1
  646. Priority=1000
  647. OverrideBuildCmd=0
  648. BuildCmd=
  649. [Unit69]
  650. FileName=gcsx_tooltip.cpp
  651. CompileCpp=1
  652. Folder=
  653. Compile=1
  654. Link=1
  655. Priority=1000
  656. OverrideBuildCmd=0
  657. BuildCmd=
  658. [Unit70]
  659. FileName=include\gcsx_tooltip.h
  660. CompileCpp=1
  661. Folder=headers
  662. Compile=1
  663. Link=1
  664. Priority=1000
  665. OverrideBuildCmd=0
  666. BuildCmd=
  667. [Unit71]
  668. FileName=sge_rotation.cpp
  669. CompileCpp=1
  670. Folder=libs
  671. Compile=1
  672. Link=1
  673. Priority=1000
  674. OverrideBuildCmd=0
  675. BuildCmd=
  676. [Unit72]
  677. FileName=include\sge_rotation.h
  678. CompileCpp=1
  679. Folder=libs
  680. Compile=1
  681. Link=1
  682. Priority=1000
  683. OverrideBuildCmd=0
  684. BuildCmd=
  685. [Unit73]
  686. FileName=gcsx_wpreview.cpp
  687. CompileCpp=1
  688. Folder=
  689. Compile=1
  690. Link=1
  691. Priority=1000
  692. OverrideBuildCmd=0
  693. BuildCmd=
  694. [Unit74]
  695. FileName=include\gcsx_wpreview.h
  696. CompileCpp=1
  697. Folder=headers
  698. Compile=1
  699. Link=1
  700. Priority=1000
  701. OverrideBuildCmd=0
  702. BuildCmd=
  703. [Unit75]
  704. FileName=include\gcsx_toolselect.h
  705. CompileCpp=1
  706. Folder=headers
  707. Compile=1
  708. Link=1
  709. Priority=1000
  710. OverrideBuildCmd=0
  711. BuildCmd=
  712. [Unit76]
  713. FileName=gcsx_toolselect.cpp
  714. CompileCpp=1
  715. Folder=
  716. Compile=1
  717. Link=1
  718. Priority=1000
  719. OverrideBuildCmd=0
  720. BuildCmd=
  721. [Unit77]
  722. FileName=include\gcsx_worldedit.h
  723. CompileCpp=1
  724. Folder=headers
  725. Compile=1
  726. Link=1
  727. Priority=1000
  728. OverrideBuildCmd=0
  729. BuildCmd=
  730. [Unit78]
  731. FileName=include\gcsx_save.h
  732. CompileCpp=1
  733. Folder=headers
  734. Compile=1
  735. Link=1
  736. Priority=1000
  737. OverrideBuildCmd=0
  738. BuildCmd=
  739. [Unit79]
  740. FileName=gcsx_save.cpp
  741. CompileCpp=1
  742. Folder=
  743. Compile=1
  744. Link=1
  745. Priority=1000
  746. OverrideBuildCmd=0
  747. BuildCmd=
  748. [Unit80]
  749. FileName=include\gcsx_load.h
  750. CompileCpp=1
  751. Folder=headers
  752. Compile=1
  753. Link=1
  754. Priority=1000
  755. OverrideBuildCmd=0
  756. BuildCmd=
  757. [Unit81]
  758. FileName=gcsx_load.cpp
  759. CompileCpp=1
  760. Folder=
  761. Compile=1
  762. Link=1
  763. Priority=1000
  764. OverrideBuildCmd=0
  765. BuildCmd=
  766. [Unit82]
  767. FileName=include\gcsx_file.h
  768. CompileCpp=1
  769. Folder=headers
  770. Compile=1
  771. Link=1
  772. Priority=1000
  773. OverrideBuildCmd=0
  774. BuildCmd=
  775. [Unit83]
  776. FileName=gcsx_file.cpp
  777. CompileCpp=1
  778. Folder=
  779. Compile=1
  780. Link=1
  781. Priority=1000
  782. OverrideBuildCmd=0
  783. BuildCmd=
  784. [Unit84]
  785. FileName=include\gcsx_filedialog.h
  786. CompileCpp=1
  787. Folder=headers
  788. Compile=1
  789. Link=1
  790. Priority=1000
  791. OverrideBuildCmd=0
  792. BuildCmd=
  793. [Unit85]
  794. FileName=gcsx_filedialog.cpp
  795. CompileCpp=1
  796. Folder=
  797. Compile=1
  798. Link=1
  799. Priority=1000
  800. OverrideBuildCmd=0
  801. BuildCmd=
  802. [Unit86]
  803. FileName=include\gcsx_layer.h
  804. CompileCpp=1
  805. Folder=headers
  806. Compile=1
  807. Link=1
  808. Priority=1000
  809. OverrideBuildCmd=0
  810. BuildCmd=
  811. [Unit87]
  812. FileName=include\gcsx_scene.h
  813. CompileCpp=1
  814. Folder=headers
  815. Compile=1
  816. Link=1
  817. Priority=1000
  818. OverrideBuildCmd=0
  819. BuildCmd=
  820. [Unit89]
  821. FileName=gcsx_scene.cpp
  822. CompileCpp=1
  823. Folder=
  824. Compile=1
  825. Link=1
  826. Priority=1000
  827. OverrideBuildCmd=0
  828. BuildCmd=
  829. [Unit90]
  830. FileName=gcsx_sceneedit.cpp
  831. CompileCpp=1
  832. Folder=
  833. Compile=1
  834. Link=1
  835. Priority=1000
  836. OverrideBuildCmd=0
  837. BuildCmd=
  838. [Unit91]
  839. FileName=include\gcsx_layeredit.h
  840. CompileCpp=1
  841. Folder=headers
  842. Compile=1
  843. Link=1
  844. Priority=1000
  845. OverrideBuildCmd=0
  846. BuildCmd=
  847. [Unit92]
  848. FileName=gcsx_layer.cpp
  849. CompileCpp=1
  850. Folder=
  851. Compile=1
  852. Link=1
  853. Priority=1000
  854. OverrideBuildCmd=0
  855. BuildCmd=
  856. [Unit93]
  857. FileName=gcsx_layeredit.cpp
  858. CompileCpp=1
  859. Folder=
  860. Compile=1
  861. Link=1
  862. Priority=1000
  863. OverrideBuildCmd=0
  864. BuildCmd=
  865. [Unit88]
  866. FileName=include\gcsx_sceneedit.h
  867. CompileCpp=1
  868. Folder=headers
  869. Compile=1
  870. Link=1
  871. Priority=1000
  872. OverrideBuildCmd=0
  873. BuildCmd=
  874. [Unit94]
  875. FileName=include\gcsx_sceneprop.h
  876. CompileCpp=1
  877. Folder=headers
  878. Compile=1
  879. Link=1
  880. Priority=1000
  881. OverrideBuildCmd=0
  882. BuildCmd=
  883. [Unit95]
  884. FileName=gcsx_sceneprop.cpp
  885. CompileCpp=1
  886. Folder=
  887. Compile=1
  888. Link=1
  889. Priority=1000
  890. OverrideBuildCmd=0
  891. BuildCmd=
  892. [Unit96]
  893. FileName=include\gcsx_sceneeditlayer.h
  894. CompileCpp=1
  895. Folder=headers
  896. Compile=1
  897. Link=1
  898. Priority=1000
  899. OverrideBuildCmd=0
  900. BuildCmd=
  901. [Unit97]
  902. FileName=gcsx_sceneeditlayer.cpp
  903. CompileCpp=1
  904. Folder=
  905. Compile=1
  906. Link=1
  907. Priority=1000
  908. OverrideBuildCmd=0
  909. BuildCmd=
  910. [Unit98]
  911. FileName=include\gcsx_layerprop.h
  912. CompileCpp=1
  913. Folder=headers
  914. Compile=1
  915. Link=1
  916. Priority=1000
  917. OverrideBuildCmd=0
  918. BuildCmd=
  919. [Unit99]
  920. FileName=include\gcsx_tilesetprop.h
  921. CompileCpp=1
  922. Folder=headers
  923. Compile=1
  924. Link=1
  925. Priority=1000
  926. OverrideBuildCmd=0
  927. BuildCmd=
  928. [Unit100]
  929. FileName=gcsx_layerprop.cpp
  930. CompileCpp=1
  931. Folder=
  932. Compile=1
  933. Link=1
  934. Priority=1000
  935. OverrideBuildCmd=0
  936. BuildCmd=
  937. [Unit101]
  938. FileName=include\gcsx_undo.h
  939. CompileCpp=1
  940. Folder=headers
  941. Compile=1
  942. Link=1
  943. Priority=1000
  944. OverrideBuildCmd=0
  945. BuildCmd=
  946. [Unit103]
  947. FileName=include\gcsx_imgselect.h
  948. CompileCpp=1
  949. Folder=headers
  950. Compile=1
  951. Link=1
  952. Priority=1000
  953. OverrideBuildCmd=0
  954. BuildCmd=
  955. [Unit102]
  956. FileName=gcsx_undo.cpp
  957. CompileCpp=1
  958. Folder=
  959. Compile=1
  960. Link=1
  961. Priority=1000
  962. OverrideBuildCmd=0
  963. BuildCmd=
  964. [Unit107]
  965. FileName=gcsx_console.cpp
  966. CompileCpp=1
  967. Folder=
  968. Compile=1
  969. Link=1
  970. Priority=1000
  971. OverrideBuildCmd=0
  972. BuildCmd=
  973. [Unit106]
  974. FileName=gcsx_editbox.cpp
  975. CompileCpp=1
  976. Folder=
  977. Compile=1
  978. Link=1
  979. Priority=1000
  980. OverrideBuildCmd=0
  981. BuildCmd=
  982. [Unit108]
  983. FileName=include\gcsx_console.h
  984. CompileCpp=1
  985. Folder=headers
  986. Compile=1
  987. Link=1
  988. Priority=1000
  989. OverrideBuildCmd=0
  990. BuildCmd=
  991. [Unit109]
  992. FileName=include\gcsx_frontend.h
  993. CompileCpp=1
  994. Folder=headers
  995. Compile=1
  996. Link=1
  997. Priority=1000
  998. OverrideBuildCmd=0
  999. BuildCmd=
  1000. [Unit110]
  1001. FileName=gcsx_frontend.cpp
  1002. CompileCpp=1
  1003. Folder=
  1004. Compile=1
  1005. Link=1
  1006. Priority=1000
  1007. OverrideBuildCmd=0
  1008. BuildCmd=
  1009. [Unit111]
  1010. FileName=IMG.c
  1011. CompileCpp=1
  1012. Folder=libs
  1013. Compile=1
  1014. Link=1
  1015. Priority=1000
  1016. OverrideBuildCmd=0
  1017. BuildCmd=
  1018. [Unit112]
  1019. FileName=include\SDL_image.h
  1020. CompileCpp=1
  1021. Folder=libs
  1022. Compile=1
  1023. Link=1
  1024. Priority=1000
  1025. OverrideBuildCmd=0
  1026. BuildCmd=
  1027. [Unit113]
  1028. FileName=IMG_gif.c
  1029. CompileCpp=1
  1030. Folder=libs
  1031. Compile=1
  1032. Link=1
  1033. Priority=1000
  1034. OverrideBuildCmd=0
  1035. BuildCmd=
  1036. [Unit114]
  1037. FileName=IMG_pcx.c
  1038. CompileCpp=1
  1039. Folder=libs
  1040. Compile=1
  1041. Link=1
  1042. Priority=1000
  1043. OverrideBuildCmd=0
  1044. BuildCmd=
  1045. [Unit120]
  1046. FileName=include\gcsx_imgchoose.h
  1047. CompileCpp=1
  1048. Folder=headers
  1049. Compile=1
  1050. Link=1
  1051. Priority=1000
  1052. OverrideBuildCmd=0
  1053. BuildCmd=
  1054. [Unit125]
  1055. FileName=include\gcsx_progress.h
  1056. CompileCpp=1
  1057. Folder=headers
  1058. Compile=1
  1059. Link=1
  1060. Priority=1000
  1061. OverrideBuildCmd=0
  1062. BuildCmd=
  1063. [Unit126]
  1064. FileName=gcsx_progress.cpp
  1065. CompileCpp=1
  1066. Folder=
  1067. Compile=1
  1068. Link=1
  1069. Priority=1000
  1070. OverrideBuildCmd=0
  1071. BuildCmd=
  1072. [Unit127]
  1073. FileName=gcsx_script.cpp
  1074. CompileCpp=1
  1075. Folder=
  1076. Compile=1
  1077. Link=1
  1078. Priority=1000
  1079. OverrideBuildCmd=0
  1080. BuildCmd=
  1081. [Unit115]
  1082. FileName=IMG_tga.c
  1083. CompileCpp=1
  1084. Folder=libs
  1085. Compile=1
  1086. Link=1
  1087. Priority=1000
  1088. OverrideBuildCmd=0
  1089. BuildCmd=
  1090. [Unit118]
  1091. FileName=include\gcsx_layerlist.h
  1092. CompileCpp=1
  1093. Folder=headers
  1094. Compile=1
  1095. Link=1
  1096. Priority=1000
  1097. OverrideBuildCmd=0
  1098. BuildCmd=
  1099. [Unit129]
  1100. FileName=include\gcsx_scriptedit.h
  1101. CompileCpp=1
  1102. Folder=headers
  1103. Compile=1
  1104. Link=1
  1105. Priority=1000
  1106. OverrideBuildCmd=0
  1107. BuildCmd=
  1108. [Unit135]
  1109. FileName=gcsx_colorselect.cpp
  1110. CompileCpp=1
  1111. Folder=
  1112. Compile=1
  1113. Link=1
  1114. Priority=1000
  1115. OverrideBuildCmd=0
  1116. BuildCmd=
  1117. [Unit136]
  1118. FileName=include\gcsx_colorselect.h
  1119. CompileCpp=1
  1120. Folder=headers
  1121. Compile=1
  1122. Link=1
  1123. Priority=1000
  1124. OverrideBuildCmd=0
  1125. BuildCmd=
  1126. [Unit137]
  1127. FileName=include\gcsx_sprite.h
  1128. CompileCpp=1
  1129. Folder=headers
  1130. Compile=1
  1131. Link=1
  1132. Priority=1000
  1133. OverrideBuildCmd=0
  1134. BuildCmd=
  1135. [Unit138]
  1136. FileName=gcsx_sprite.cpp
  1137. CompileCpp=1
  1138. Folder=
  1139. Compile=1
  1140. Link=1
  1141. Priority=1000
  1142. OverrideBuildCmd=0
  1143. BuildCmd=
  1144. [Unit116]
  1145. FileName=IMG_bmp.c
  1146. CompileCpp=1
  1147. Folder=libs
  1148. Compile=1
  1149. Link=1
  1150. Priority=1000
  1151. OverrideBuildCmd=0
  1152. BuildCmd=
  1153. [Unit117]
  1154. FileName=IMG_png.c
  1155. CompileCpp=1
  1156. Folder=libs
  1157. Compile=1
  1158. Link=1
  1159. Priority=1000
  1160. OverrideBuildCmd=0
  1161. BuildCmd=
  1162. [Unit119]
  1163. FileName=gcsx_layerlist.cpp
  1164. CompileCpp=1
  1165. Folder=
  1166. Compile=1
  1167. Link=1
  1168. Priority=1000
  1169. OverrideBuildCmd=0
  1170. BuildCmd=
  1171. [Unit121]
  1172. FileName=gcsx_imgchoose.cpp
  1173. CompileCpp=1
  1174. Folder=
  1175. Compile=1
  1176. Link=1
  1177. Priority=1000
  1178. OverrideBuildCmd=0
  1179. BuildCmd=
  1180. [Unit139]
  1181. FileName=include\gcsx_imgdialog.h
  1182. CompileCpp=1
  1183. Folder=headers
  1184. Compile=1
  1185. Link=1
  1186. Priority=1000
  1187. OverrideBuildCmd=0
  1188. BuildCmd=
  1189. [Unit140]
  1190. FileName=gcsx_imgdialog.cpp
  1191. CompileCpp=1
  1192. Folder=
  1193. Compile=1
  1194. Link=1
  1195. Priority=1000
  1196. OverrideBuildCmd=0
  1197. BuildCmd=
  1198. [Unit141]
  1199. FileName=include\gcsx_spawnprop.h
  1200. CompileCpp=1
  1201. Folder=headers
  1202. Compile=1
  1203. Link=1
  1204. Priority=1000
  1205. OverrideBuildCmd=0
  1206. BuildCmd=
  1207. [Unit142]
  1208. FileName=gcsx_spawnprop.cpp
  1209. CompileCpp=1
  1210. Folder=
  1211. Compile=1
  1212. Link=1
  1213. Priority=1000
  1214. OverrideBuildCmd=0
  1215. BuildCmd=
  1216. [Unit143]
  1217. FileName=gcsx_spawn.cpp
  1218. CompileCpp=1
  1219. Folder=
  1220. Compile=1
  1221. Link=1
  1222. Priority=1000
  1223. OverrideBuildCmd=0
  1224. BuildCmd=
  1225. [Unit146]
  1226. FileName=gcsx_spawnedit.cpp
  1227. CompileCpp=1
  1228. Folder=
  1229. Compile=1
  1230. Link=1
  1231. Priority=1000
  1232. OverrideBuildCmd=0
  1233. BuildCmd=
  1234. [Unit144]
  1235. FileName=include\gcsx_spawn.h
  1236. CompileCpp=1
  1237. Folder=headers
  1238. Compile=1
  1239. Link=1
  1240. Priority=1000
  1241. OverrideBuildCmd=0
  1242. BuildCmd=
  1243. [Unit145]
  1244. FileName=include\gcsx_spawnedit.h
  1245. CompileCpp=1
  1246. Folder=headers
  1247. Compile=1
  1248. Link=1
  1249. Priority=1000
  1250. OverrideBuildCmd=0
  1251. BuildCmd=
  1252. [Unit148]
  1253. FileName=gcsx_game.cpp
  1254. CompileCpp=1
  1255. Folder=
  1256. Compile=1
  1257. Link=1
  1258. Priority=1000
  1259. OverrideBuildCmd=0
  1260. BuildCmd=
  1261. [Unit150]
  1262. FileName=gcsx_texture.cpp
  1263. CompileCpp=1
  1264. Folder=
  1265. Compile=1
  1266. Link=1
  1267. Priority=1000
  1268. OverrideBuildCmd=0
  1269. BuildCmd=
  1270. [Unit130]
  1271. FileName=gcsx_scriptedit.cpp
  1272. CompileCpp=1
  1273. Folder=
  1274. Compile=1
  1275. Link=1
  1276. Priority=1000
  1277. OverrideBuildCmd=0
  1278. BuildCmd=
  1279. [Unit131]
  1280. FileName=gcsx_scriptprop.cpp
  1281. Folder=
  1282. Compile=1
  1283. Link=1
  1284. Priority=1000
  1285. OverrideBuildCmd=0
  1286. BuildCmd=
  1287. CompileCpp=1
  1288. [Unit134]
  1289. FileName=include\gcsx_scripteditor.h
  1290. CompileCpp=1
  1291. Folder=headers
  1292. Compile=1
  1293. Link=1
  1294. Priority=1000
  1295. OverrideBuildCmd=0
  1296. BuildCmd=
  1297. [Unit104]
  1298. FileName=gcsx_imgselect.cpp
  1299. CompileCpp=1
  1300. Folder=
  1301. Compile=1
  1302. Link=1
  1303. Priority=1000
  1304. OverrideBuildCmd=0
  1305. BuildCmd=
  1306. [Unit105]
  1307. FileName=include\gcsx_editbox.h
  1308. CompileCpp=1
  1309. Folder=headers
  1310. Compile=1
  1311. Link=1
  1312. Priority=1000
  1313. OverrideBuildCmd=0
  1314. BuildCmd=
  1315. [Unit147]
  1316. FileName=include\gcsx_game.h
  1317. CompileCpp=1
  1318. Folder=headers
  1319. Compile=1
  1320. Link=1
  1321. Priority=1000
  1322. OverrideBuildCmd=0
  1323. BuildCmd=
  1324. [Unit151]
  1325. FileName=gcsx_opengl.cpp
  1326. CompileCpp=1
  1327. Folder=
  1328. Compile=1
  1329. Link=1
  1330. Priority=1000
  1331. OverrideBuildCmd=0
  1332. BuildCmd=
  1333. [Unit152]
  1334. FileName=include\gcsx_opengl.h
  1335. CompileCpp=1
  1336. Folder=headers
  1337. Compile=1
  1338. Link=1
  1339. Priority=1000
  1340. OverrideBuildCmd=0
  1341. BuildCmd=
  1342. [Unit154]
  1343. FileName=include\gcsx_tokenize.h
  1344. CompileCpp=1
  1345. Folder=headers
  1346. Compile=1
  1347. Link=1
  1348. Priority=1000
  1349. OverrideBuildCmd=0
  1350. BuildCmd=
  1351. [Unit155]
  1352. FileName=include\gcsx_compile.h
  1353. CompileCpp=1
  1354. Folder=headers
  1355. Compile=1
  1356. Link=1
  1357. Priority=1000
  1358. OverrideBuildCmd=0
  1359. BuildCmd=
  1360. [Unit156]
  1361. FileName=include\gcsx_bytecode.h
  1362. CompileCpp=1
  1363. Folder=headers
  1364. Compile=1
  1365. Link=1
  1366. Priority=1000
  1367. OverrideBuildCmd=0
  1368. BuildCmd=
  1369. [Unit158]
  1370. FileName=include\gcsx_worldprop.h
  1371. CompileCpp=1
  1372. Folder=headers
  1373. Compile=1
  1374. Link=1
  1375. Priority=1000
  1376. OverrideBuildCmd=0
  1377. BuildCmd=
  1378. [Unit157]
  1379. FileName=gcsx_bytecode.cpp
  1380. CompileCpp=1
  1381. Folder=
  1382. Compile=1
  1383. Link=1
  1384. Priority=1000
  1385. OverrideBuildCmd=0
  1386. BuildCmd=
  1387. [Unit159]
  1388. FileName=gcsx_worldprop.cpp
  1389. CompileCpp=1
  1390. Folder=
  1391. Compile=1
  1392. Link=1
  1393. Priority=1000
  1394. OverrideBuildCmd=0
  1395. BuildCmd=
  1396. [Unit160]
  1397. FileName=include\gcsx_worldplay.h
  1398. CompileCpp=1
  1399. Folder=headers
  1400. Compile=1
  1401. Link=1
  1402. Priority=1000
  1403. OverrideBuildCmd=0
  1404. BuildCmd=
  1405. [Unit162]
  1406. FileName=doc\bytecode-todo.txt
  1407. CompileCpp=1
  1408. Folder=docs
  1409. Compile=0
  1410. Link=0
  1411. Priority=1000
  1412. OverrideBuildCmd=0
  1413. BuildCmd=
  1414. [Unit161]
  1415. FileName=gcsx_worldplay.cpp
  1416. CompileCpp=1
  1417. Folder=
  1418. Compile=1
  1419. Link=1
  1420. Priority=1000
  1421. OverrideBuildCmd=0
  1422. BuildCmd=
  1423. [Unit163]
  1424. FileName=doc\gen-todo.txt
  1425. CompileCpp=1
  1426. Folder=docs
  1427. Compile=0
  1428. Link=0
  1429. Priority=1000
  1430. OverrideBuildCmd=0
  1431. BuildCmd=
  1432. [Unit164]
  1433. FileName=doc\gcs-lang.html
  1434. CompileCpp=1
  1435. Folder=docs
  1436. Compile=0
  1437. Link=0
  1438. Priority=1000
  1439. OverrideBuildCmd=0
  1440. BuildCmd=
  1441. [Unit165]
  1442. FileName=changelog.txt
  1443. CompileCpp=1
  1444. Folder=docs
  1445. Compile=0
  1446. Link=0
  1447. Priority=1000
  1448. OverrideBuildCmd=0
  1449. BuildCmd=
  1450. [Unit166]
  1451. FileName=include\gcsx_entity.h
  1452. CompileCpp=1
  1453. Folder=headers
  1454. Compile=1
  1455. Link=1
  1456. Priority=1000
  1457. OverrideBuildCmd=0
  1458. BuildCmd=
  1459. [Unit167]
  1460. FileName=gcsx_entity.cpp
  1461. CompileCpp=1
  1462. Folder=
  1463. Compile=1
  1464. Link=1
  1465. Priority=1000
  1466. OverrideBuildCmd=0
  1467. BuildCmd=
  1468. [Unit168]
  1469. FileName=include\gcsx_rundata.h
  1470. CompileCpp=1
  1471. Folder=headers
  1472. Compile=1
  1473. Link=1
  1474. Priority=1000
  1475. OverrideBuildCmd=0
  1476. BuildCmd=
  1477. [Unit169]
  1478. FileName=gcsx_rundata.cpp
  1479. CompileCpp=1
  1480. Folder=
  1481. Compile=1
  1482. Link=1
  1483. Priority=1000
  1484. OverrideBuildCmd=0
  1485. BuildCmd=
  1486. [Unit170]
  1487. FileName=include\all.h
  1488. CompileCpp=1
  1489. Folder=headers
  1490. Compile=1
  1491. Link=1
  1492. Priority=1000
  1493. OverrideBuildCmd=0
  1494. BuildCmd=
  1495. [Unit172]
  1496. FileName=gcsx_define.cpp
  1497. CompileCpp=1
  1498. Folder=
  1499. Compile=1
  1500. Link=1
  1501. Priority=1000
  1502. OverrideBuildCmd=0
  1503. BuildCmd=
  1504. [Unit171]
  1505. FileName=include\gcsx_define.h
  1506. CompileCpp=1
  1507. Folder=headers
  1508. Compile=1
  1509. Link=1
  1510. Priority=1000
  1511. OverrideBuildCmd=0
  1512. BuildCmd=
  1513. [Unit174]
  1514. FileName=gcsx_folder.cpp
  1515. CompileCpp=1
  1516. Folder=
  1517. Compile=1
  1518. Link=1
  1519. Priority=1000
  1520. OverrideBuildCmd=0
  1521. BuildCmd=
  1522. [Unit173]
  1523. FileName=include\gcsx_folder.h
  1524. CompileCpp=1
  1525. Folder=headers
  1526. Compile=1
  1527. Link=1
  1528. Priority=1000
  1529. OverrideBuildCmd=0
  1530. BuildCmd=
  1531. [Unit175]
  1532. FileName=gcsx_animgroup.cpp
  1533. Folder=GCSx
  1534. Compile=1
  1535. Link=1
  1536. Priority=1000
  1537. OverrideBuildCmd=0
  1538. BuildCmd=
  1539. CompileCpp=1
  1540. [Unit176]
  1541. FileName=gcsx_animgroupedit.cpp
  1542. Folder=GCSx
  1543. Compile=1
  1544. Link=1
  1545. Priority=1000
  1546. OverrideBuildCmd=0
  1547. BuildCmd=
  1548. CompileCpp=1
  1549. [Unit177]
  1550. FileName=gcsx_animgrouppaint.cpp
  1551. Folder=GCSx
  1552. Compile=1
  1553. Link=1
  1554. Priority=1000
  1555. OverrideBuildCmd=0
  1556. BuildCmd=
  1557. CompileCpp=1
  1558. [Unit178]
  1559. FileName=gcsx_animgroupprop.cpp
  1560. Folder=GCSx
  1561. Compile=1
  1562. Link=1
  1563. Priority=1000
  1564. OverrideBuildCmd=0
  1565. BuildCmd=
  1566. CompileCpp=1
  1567. [Unit149]
  1568. FileName=include\gcsx_texture.h
  1569. CompileCpp=1
  1570. Folder=headers
  1571. Compile=1
  1572. Link=1
  1573. Priority=1000
  1574. OverrideBuildCmd=0
  1575. BuildCmd=
  1576. [Unit179]
  1577. FileName=include\gcsx_animgroupprop.h
  1578. CompileCpp=1
  1579. Folder=headers
  1580. Compile=1
  1581. Link=1
  1582. Priority=1000
  1583. OverrideBuildCmd=0
  1584. BuildCmd=
  1585. [Unit180]
  1586. FileName=include\gcsx_animgroup.h
  1587. CompileCpp=1
  1588. Folder=headers
  1589. Compile=1
  1590. Link=1
  1591. Priority=1000
  1592. OverrideBuildCmd=0
  1593. BuildCmd=
  1594. [Unit181]
  1595. FileName=include\gcsx_animgroupedit.h
  1596. CompileCpp=1
  1597. Folder=headers
  1598. Compile=1
  1599. Link=1
  1600. Priority=1000
  1601. OverrideBuildCmd=0
  1602. BuildCmd=
  1603. [Unit182]
  1604. FileName=include\gcsx_animgrouppaint.h
  1605. CompileCpp=1
  1606. Folder=headers
  1607. Compile=1
  1608. Link=1
  1609. Priority=1000
  1610. OverrideBuildCmd=0
  1611. BuildCmd=
  1612. [Unit183]
  1613. FileName=gcsx_tokenize.cpp
  1614. CompileCpp=1
  1615. Folder=GCSx
  1616. Compile=1
  1617. Link=1
  1618. Priority=1000
  1619. OverrideBuildCmd=0
  1620. BuildCmd=
  1621. [Unit184]
  1622. FileName=gcsx_folder.cpp
  1623. CompileCpp=1
  1624. Folder=
  1625. Compile=1
  1626. Link=1
  1627. Priority=1000
  1628. OverrideBuildCmd=0
  1629. BuildCmd=
  1630. [Unit30]
  1631. FileName=gcsx_event.cpp
  1632. CompileCpp=1
  1633. Folder=
  1634. Compile=1
  1635. Link=1
  1636. Priority=1000
  1637. OverrideBuildCmd=0
  1638. BuildCmd=
  1639. [Unit122]
  1640. FileName=readme.txt
  1641. Folder=docs
  1642. Compile=0
  1643. Link=0
  1644. Priority=1000
  1645. OverrideBuildCmd=0
  1646. BuildCmd=
  1647. [Unit123]
  1648. FileName=include\gcsx_importimg.h
  1649. CompileCpp=1
  1650. Folder=headers
  1651. Compile=1
  1652. Link=1
  1653. Priority=1000
  1654. OverrideBuildCmd=0
  1655. BuildCmd=
  1656. [Unit124]
  1657. FileName=gcsx_importimg.cpp
  1658. CompileCpp=1
  1659. Folder=
  1660. Compile=1
  1661. Link=1
  1662. Priority=1000
  1663. OverrideBuildCmd=0
  1664. BuildCmd=
  1665. [Unit128]
  1666. FileName=include\gcsx_script.h
  1667. CompileCpp=1
  1668. Folder=headers
  1669. Compile=1
  1670. Link=1
  1671. Priority=1000
  1672. OverrideBuildCmd=0
  1673. BuildCmd=
  1674. [Unit132]
  1675. FileName=include\gcsx_scriptprop.h
  1676. CompileCpp=1
  1677. Folder=headers
  1678. Compile=1
  1679. Link=1
  1680. Priority=1000
  1681. OverrideBuildCmd=0
  1682. BuildCmd=
  1683. [Unit133]
  1684. FileName=gcsx_scripteditor.cpp
  1685. CompileCpp=1
  1686. Folder=
  1687. Compile=1
  1688. Link=1
  1689. Priority=1000
  1690. OverrideBuildCmd=0
  1691. BuildCmd=
  1692. [Unit153]
  1693. FileName=gcsx_compile.cpp
  1694. CompileCpp=1
  1695. Folder=
  1696. Compile=1
  1697. Link=1
  1698. Priority=1000
  1699. OverrideBuildCmd=0
  1700. BuildCmd=