From 91d77be36e2067ce51c64262d0df1efa53e0d470 Mon Sep 17 00:00:00 2001 From: omar Date: Mon, 29 Jan 2018 00:55:16 +0100 Subject: [PATCH] Examples: Makefile leave CXX alone, instead leave commented out options. (nb: codeship doesn't seem have clang++) --- examples/opengl2_example/Makefile | 2 +- examples/opengl3_example/Makefile | 2 +- examples/sdl_opengl3_example/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/opengl2_example/Makefile b/examples/opengl2_example/Makefile index e00891ba..b0ee3152 100644 --- a/examples/opengl2_example/Makefile +++ b/examples/opengl2_example/Makefile @@ -12,7 +12,7 @@ # #CXX = g++ -CXX = clang++ +#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 881c9bd1..133c0a64 100644 --- a/examples/opengl3_example/Makefile +++ b/examples/opengl3_example/Makefile @@ -12,7 +12,7 @@ # #CXX = g++ -CXX = clang++ +#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 06e4d880..45f6a663 100644 --- a/examples/sdl_opengl3_example/Makefile +++ b/examples/sdl_opengl3_example/Makefile @@ -12,7 +12,7 @@ # #CXX = g++ -CXX = clang++ +#CXX = clang++ EXE = sdl_opengl3_example OBJS = main.o imgui_impl_sdl_gl3.o