Skip to content

Commit

Permalink
Lib: update glfw binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
immiao committed Aug 27, 2017
1 parent fd265d2 commit 9b43cb6
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,15 @@ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(EXTERNAL_LIB_PATH "${EXTERNAL}/lib/linux" "/usr/lib64")
elseif(WIN32)
set(EXTERNAL_LIB_PATH "${EXTERNAL}/lib/win")
if(${MSVC_VERSION} MATCHES "1900")
set(EXTERNAL_LIB_PATH "${EXTERNAL}/lib/win/vc2015")
elseif(${MSVC_VERSION} MATCHES "1800")
set(EXTERNAL_LIB_PATH "${EXTERNAL}/lib/win/vc2013")
elseif(${MSVC_VERSION} MATCHES "1700")
set(EXTERNAL_LIB_PATH "${EXTERNAL}/lib/win/vc2012")
else()
MESSAGE("Error: unsupported MSVC_VERSION: " ${MSVC_VERSION})
endif()
endif()
link_directories(${EXTERNAL_LIB_PATH})
list(APPEND CMAKE_LIBRARY_PATH "${EXTERNAL_LIB_PATH}")
Expand Down
Binary file added external/lib/win/vc2012/glew32s.lib
Binary file not shown.
Binary file added external/lib/win/vc2012/glfw3.lib
Binary file not shown.
Binary file added external/lib/win/vc2012/glfw3dll.lib
Binary file not shown.
Binary file added external/lib/win/vc2013/glew32s.lib
Binary file not shown.
Binary file added external/lib/win/vc2013/glfw3.lib
Binary file not shown.
Binary file added external/lib/win/vc2013/glfw3dll.lib
Binary file not shown.
Binary file added external/lib/win/vc2015/glew32s.lib
Binary file not shown.
Binary file added external/lib/win/vc2015/glfw3.lib
Binary file not shown.
Binary file added external/lib/win/vc2015/glfw3dll.lib
Binary file not shown.

0 comments on commit 9b43cb6

Please sign in to comment.