From 3cdd2096ec3998aef478a66feb1bb700de69b0d4 Mon Sep 17 00:00:00 2001 From: Omar Cornut Date: Mon, 29 Jan 2018 00:48:21 +0100 Subject: [PATCH] Examples: Use Clang in old Makefile. --- examples/opengl2_example/Makefile | 1 + examples/opengl3_example/Makefile | 1 + examples/sdl_opengl3_example/Makefile | 1 + 3 files changed, 3 insertions(+) diff --git a/examples/opengl2_example/Makefile b/examples/opengl2_example/Makefile index ea96af44..e00891ba 100644 --- a/examples/opengl2_example/Makefile +++ b/examples/opengl2_example/Makefile @@ -12,6 +12,7 @@ # #CXX = g++ +CXX = clang++ EXE = opengl2_example OBJS = main.o imgui_impl_glfw_gl2.o diff --git a/examples/opengl3_example/Makefile b/examples/opengl3_example/Makefile index 63eaf75c..881c9bd1 100644 --- a/examples/opengl3_example/Makefile +++ b/examples/opengl3_example/Makefile @@ -12,6 +12,7 @@ # #CXX = g++ +CXX = clang++ EXE = opengl3_example OBJS = main.o imgui_impl_glfw_gl3.o diff --git a/examples/sdl_opengl3_example/Makefile b/examples/sdl_opengl3_example/Makefile index b454bebd..06e4d880 100644 --- a/examples/sdl_opengl3_example/Makefile +++ b/examples/sdl_opengl3_example/Makefile @@ -12,6 +12,7 @@ # #CXX = g++ +CXX = clang++ EXE = sdl_opengl3_example OBJS = main.o imgui_impl_sdl_gl3.o