marmalade_example.mkb 806 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/usr/bin/env mkb
  2. # ImGui - standalone example application for Marmalade
  3. # Copyright (C) 2015 by Giovanni Zito
  4. # This file is part of ImGui
  5. # https://github.com/ocornut/imgui
  6. define IMGUI_DISABLE_INCLUDE_IMCONFIG_H
  7. define IMGUI_DISABLE_WIN32_DEFAULT_CLIPBOARD_FUNCS
  8. define IMGUI_DISABLE_WIN32_DEFAULT_IME_FUNCS
  9. define _snprintf=snprintf
  10. options
  11. {
  12. optimise-speed=1
  13. }
  14. includepaths
  15. {
  16. ../..
  17. ../../backends
  18. }
  19. subprojects
  20. {
  21. iwgx
  22. }
  23. files
  24. {
  25. (.)
  26. ["imgui"]
  27. ../../imgui.cpp
  28. ../../imgui_demo.cpp
  29. ../../imgui_draw.cpp
  30. ../../imgui_tables.cpp
  31. ../../imgui_widgets.cpp
  32. ../../imconfig.h
  33. ../../imgui.h
  34. ../../imgui_internal.h
  35. ["imgui","Marmalade backend"]
  36. ../../backends/imgui_impl_marmalade.h
  37. ../../backends/imgui_impl_marmalade.cpp
  38. main.cpp
  39. }