1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-25 12:08:34 +02:00
imgui/examples/allegro5_example
2015-11-29 11:11:03 +00:00
..
imgui_impl_a5.cpp Examples: Most examples apps detect if ImDrawIdx was changed to 32-bits instead of 16 2015-11-08 11:00:31 +00:00
imgui_impl_a5.h Examples: Possibly clarified the intent of imgui_impl_* files. 2015-10-13 17:53:43 +02:00
main.cpp Examples: Clarified comments. Removed font merging example from comments. 2015-11-29 11:11:03 +00:00
README.md Tweak build batch files and readmes 2015-11-16 22:03:13 +01:00

How to Build

  • On Ubuntu 14.04+
g++ -I ../imgui main.cpp imgui_impl_a5.cpp ../imgui/imgui*.cpp -lallegro -lallegro_primitives
  • On Windows with Visual Studio's CLI
set ALLEGRODIR=path_to_your_allegro5_folder
cl /Zi /MD /I %ALLEGRODIR%\include /I ..\.. main.cpp imgui_impl_a5.cpp ..\..\imgui*.cpp /link /LIBPATH:%ALLEGRODIR%\lib allegro-5.0.10-monolith-md.lib user32.lib