فهرست منبع

Examples: Use Clang in old Makefile.

Omar Cornut 7 سال پیش
والد
کامیت
3cdd2096ec
3فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 1 0
      examples/opengl2_example/Makefile
  2. 1 0
      examples/opengl3_example/Makefile
  3. 1 0
      examples/sdl_opengl3_example/Makefile

+ 1 - 0
examples/opengl2_example/Makefile

@@ -12,6 +12,7 @@
 #
 
 #CXX = g++
+CXX = clang++
 
 EXE = opengl2_example
 OBJS = main.o imgui_impl_glfw_gl2.o

+ 1 - 0
examples/opengl3_example/Makefile

@@ -12,6 +12,7 @@
 #
 
 #CXX = g++
+CXX = clang++
 
 EXE = opengl3_example
 OBJS = main.o imgui_impl_glfw_gl3.o

+ 1 - 0
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