소스 검색

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