Ver Fonte

Add glad headers to CMakeLists

BtbN há 11 anos atrás
pai
commit
34cf2b0528
1 ficheiros alterados com 6 adições e 3 exclusões
  1. 6 3
      deps/glad/CMakeLists.txt

+ 6 - 3
deps/glad/CMakeLists.txt

@@ -7,14 +7,17 @@ if(NOT WIN32 AND NOT APPLE)
 endif()
 
 set(glad_SOURCES
-	src/glad.c)
+	src/glad.c
+	include/glad/glad.h)
 
 if(WIN32)
 	set(glad_PLATFORM_SOURCES
-		src/glad_wgl.c)
+		src/glad_wgl.c
+		include/glad/glad_wgl.h)
 elseif(NOT APPLE)
 	set(glad_PLATFORM_SOURCES
-		src/glad_glx.c)
+		src/glad_glx.c
+		include/glad/glad_glx.h)
 endif()
 
 add_library(glad SHARED