1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-11-13 18:50:58 +01:00
imgui/examples/allegro5_example
2018-02-05 20:34:11 +01:00
..
imgui_impl_a5.cpp Examples: Organized header files to make available features more visible. 2018-02-05 20:34:11 +01:00
imgui_impl_a5.h Examples: Organized header files to make available features more visible. 2018-02-05 20:34:11 +01:00
main.cpp Moved extra_fonts/ to misc/fonts/. Moved .natvis file to misc/natvis/ (#1569) 2018-01-31 16:00:07 +01:00
README.md Fix allegro5_example build instructions 2018-01-25 13:33:35 +01:00

How to Build

  • On Ubuntu 14.04+
g++ -I ../.. main.cpp imgui_impl_a5.cpp ../../imgui*.cpp -lallegro -lallegro_primitives -o allegro5_example
  • 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