aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/imgui/examples/example_sdl_opengl2/README.md
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/imgui/examples/example_sdl_opengl2/README.md')
-rw-r--r--3rdparty/imgui/examples/example_sdl_opengl2/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/3rdparty/imgui/examples/example_sdl_opengl2/README.md b/3rdparty/imgui/examples/example_sdl_opengl2/README.md
new file mode 100644
index 00000000..dfbfa7b6
--- /dev/null
+++ b/3rdparty/imgui/examples/example_sdl_opengl2/README.md
@@ -0,0 +1,22 @@
+
+# How to Build
+
+- On Windows with Visual Studio's CLI
+
+```
+set SDL2DIR=path_to_your_sdl2_folder
+cl /Zi /MD /I %SDL2DIR%\include /I .. /I ..\.. main.cpp ..\imgui_impl_sdl.cpp ..\imgui_impl_opengl2.cpp ..\..\imgui*.cpp /link /LIBPATH:%SDL2DIR%\lib SDL2.lib SDL2main.lib opengl32.lib /subsystem:console
+```
+
+- On Linux and similar Unixes
+
+```
+c++ `sdl2-config --cflags` -I .. -I ../.. main.cpp ../imgui_impl_sdl.cpp ../imgui_impl_opengl2.cpp ../../imgui*.cpp `sdl2-config --libs` -lGL
+```
+
+- On Mac OS X
+
+```
+brew install sdl2
+c++ `sdl2-config --cflags` -I .. -I ../.. main.cpp ../imgui_impl_sdl.cpp ../imgui_impl_opengl2.cpp ../../imgui*.cpp `sdl2-config --libs` -framework OpenGl
+```