package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.6 KiB
55 lines
1.6 KiB
add_rules("mode.debug", "mode.release") |
|
|
|
if is_plat("linux") then |
|
add_requires("libx11", "xorgproto") |
|
end |
|
|
|
target("glew") |
|
set_kind("$(kind)") |
|
if is_plat("windows", "mingw") then |
|
set_basename(is_kind("shared") and "glew32" or "glew32s") |
|
add_syslinks("glu32", "opengl32") |
|
elseif is_plat("macosx") then |
|
add_frameworks("OpenGL") |
|
elseif is_plat("linux") then |
|
add_syslinks("GL") |
|
end |
|
add_defines("GLEW_NO_GLU", {public = true}) |
|
if is_plat("windows") then |
|
if is_kind("shared") then |
|
add_defines("GLEW_BUILD") |
|
else |
|
add_defines("GLEW_STATIC", {public = true}) |
|
end |
|
elseif is_plat("mingw") and not is_kind("shared") then |
|
add_defines("GLEW_STATIC", {public = true}) |
|
end |
|
add_files("src/glew.c") |
|
add_includedirs("include", {public = true}) |
|
add_headerfiles("include/(GL/*.h)") |
|
|
|
target("glewinfo") |
|
set_kind("binary") |
|
add_deps("glew") |
|
if is_plat("windows", "mingw") then |
|
add_syslinks("user32", "gdi32", "glu32", "opengl32") |
|
elseif is_plat("macosx") then |
|
add_frameworks("OpenGL") |
|
elseif is_plat("linux") then |
|
add_syslinks("GL") |
|
add_packages("libx11", "xorgproto") |
|
end |
|
add_files("src/glewinfo.c") |
|
|
|
target("visualinfo") |
|
set_kind("binary") |
|
add_deps("glew") |
|
if is_plat("windows", "mingw") then |
|
add_syslinks("user32", "gdi32", "glu32", "opengl32") |
|
elseif is_plat("macosx") then |
|
add_frameworks("OpenGL") |
|
elseif is_plat("linux") then |
|
add_syslinks("GL") |
|
add_packages("libx11", "xorgproto") |
|
end |
|
add_files("src/visualinfo.c")
|
|
|