Skip to content
Snippets Groups Projects
Commit 06eb2a64 authored by Drake Arconis's avatar Drake Arconis
Browse files

Add linux64 and windows GLEW

parent adf43a91
No related branches found
No related tags found
No related merge requests found
......@@ -1055,6 +1055,34 @@
<string>glew</string>
<key>platforms</key>
<map>
<key>linux64</key>
<map>
<key>archive</key>
<map>
<key>hash</key>
<string>aabbfbb1bca96b922d5ad28346cf56bd</string>
<key>hash_algorithm</key>
<string>md5</string>
<key>url</key>
<string>http://depot.alchemyviewer.org/pub/linux64/lib/glew-1.12.0-linux64-201507120713.tar.bz2</string>
</map>
<key>name</key>
<string>linux64</string>
</map>
<key>windows</key>
<map>
<key>archive</key>
<map>
<key>hash</key>
<string>e0dd5a99f36f9d1885bdb6ebc672164a</string>
<key>hash_algorithm</key>
<string>md5</string>
<key>url</key>
<string>http://depot.alchemyviewer.org/pub/windows/lib/glew-1.12.0-windows-201507120657.tar.bz2</string>
</map>
<key>name</key>
<string>windows</string>
</map>
<key>windows64</key>
<map>
<key>archive</key>
......
# -*- cmake -*-
include(Prebuilt)
if (NOT USESYSTEMLIBS)
if (NOT USESYSTEMLIBS AND NOT DARWIN)
use_prebuilt_binary(glew)
if (WINDOWS)
set(GLEW_LIBRARIES
debug glew32sd.lib
optimized glew32s.lib)
elseif (DARWIN OR LINUX)
# TODO
#set(GLEW_LIBRARIES libglew.a)
elseif (LINUX)
set(GLEW_LIBRARIES libGLEW.a)
endif (WINDOWS)
set(GLEW_INCLUDE_DIR "${LIBS_PREBUILT_DIR}/include")
endif (NOT USESYSTEMLIBS)
\ No newline at end of file
endif (NOT USESYSTEMLIBS AND NOT DARWIN)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment