karl2d.sublime-project 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. {
  2. "build_systems":
  3. [
  4. {
  5. "file_regex": "^(.+)\\(([0-9]+):([0-9]+)\\) (.+)$",
  6. "name": "Karl2D",
  7. "variants":
  8. [
  9. {
  10. "name": "minimal",
  11. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=d3d11",
  12. "working_dir": "$project_path/../examples/minimal"
  13. },
  14. {
  15. "name": "minimal (gl)",
  16. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=gl",
  17. "working_dir": "$project_path/../examples/minimal"
  18. },
  19. {
  20. "name": "web example",
  21. "shell_cmd": "odin build . -out:build/main.wasm -vet -strict-style -keep-executable -debug -target:js_wasm32",
  22. "working_dir": "$project_path/../examples/web"
  23. },
  24. {
  25. "name": "fonts",
  26. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug",
  27. "working_dir": "$project_path/../examples/fonts"
  28. },
  29. {
  30. "name": "render_texture",
  31. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug",
  32. "working_dir": "$project_path/../examples/render_texture"
  33. },
  34. {
  35. "name": "render_texture (gl)",
  36. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=gl",
  37. "working_dir": "$project_path/../examples/render_texture"
  38. },
  39. {
  40. "name": "multitexture",
  41. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=d3d11",
  42. "working_dir": "$project_path/../examples/multitexture"
  43. },
  44. {
  45. "name": "multitexture (gl)",
  46. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=gl",
  47. "working_dir": "$project_path/../examples/multitexture"
  48. },
  49. {
  50. "name": "snake",
  51. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug",
  52. "working_dir": "$project_path/../examples/snake"
  53. },
  54. {
  55. "name": "box2d",
  56. "shell_cmd": "odin run . -vet -strict-style -keep-executable",
  57. "working_dir": "$project_path/../examples/box2d"
  58. },
  59. {
  60. "name": "premultiplied_alpha",
  61. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=d3d11",
  62. "working_dir": "$project_path/../examples/premultiplied_alpha"
  63. },
  64. {
  65. "name": "premultiplied_alpha (gl)",
  66. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug -define:KARL2D_RENDER_BACKEND=gl",
  67. "working_dir": "$project_path/../examples/premultiplied_alpha"
  68. },
  69. {
  70. "name": "raylib_ports/2d_camera",
  71. "shell_cmd": "odin run . -vet -strict-style -keep-executable -debug",
  72. "working_dir": "$project_path/../examples/raylib_ports/2d_camera"
  73. },
  74. {
  75. "name": "raylib_ports/shaders_texture_waves",
  76. "shell_cmd": "odin run . -keep-executable -debug",
  77. "working_dir": "$project_path/../examples/raylib_ports/shaders_texture_waves"
  78. },
  79. {
  80. "name": "bunnymark",
  81. "shell_cmd": "odin run . -vet -strict-style -no-bounds-check -keep-executable",
  82. "working_dir": "$project_path/../examples/raylib_ports/bunnymark"
  83. },
  84. {
  85. "name": "gamepad",
  86. "shell_cmd": "odin run . -vet -strict-style -keep-executable",
  87. "working_dir": "$project_path/../examples/gamepad"
  88. },
  89. {
  90. "name": "api_doc_builder",
  91. "shell_cmd": "odin run api_doc_builder",
  92. "working_dir": "$project_path/.."
  93. },
  94. ]
  95. }
  96. ],
  97. "folders":
  98. [
  99. {
  100. "path": "C:\\Projects\\karl2d"
  101. },
  102. {
  103. "path": "C:\\SDK\\Odin\\base"
  104. },
  105. {
  106. "path": "C:\\SDK\\Odin\\core"
  107. },
  108. {
  109. "path": "C:\\SDK\\Odin\\vendor\\fontstash"
  110. },
  111. {
  112. "path": "C:\\SDK\\Odin\\vendor\\OpenGL"
  113. },
  114. {
  115. "path": "C:\\Projects\\Scraps\\raylib\\src"
  116. },
  117. {
  118. "path": "C:\\SDK\\Odin\\vendor\\directx\\d3d11"
  119. },
  120. {
  121. "path": "C:\\SDK\\Odin\\vendor\\directx\\dxgi"
  122. },
  123. {
  124. "path": "C:\\SDK\\Odin\\vendor\\directx\\d3d_compiler"
  125. },
  126. {
  127. "path": "C:\\SDK\\Odin\\vendor\\directx\\dxc"
  128. },
  129. {
  130. "path": "C:\\SDK\\Odin\\vendor\\wasm\\WebGL"
  131. },
  132. {
  133. "path": "C:\\SDK\\Odin\\vendor\\box2d"
  134. }
  135. ],
  136. "settings":
  137. {
  138. "LSP":
  139. {
  140. "odin":
  141. {
  142. "enabled": true
  143. }
  144. },
  145. "auto_complete": false
  146. }
  147. }