Skip to content

Commit 6a84fca

Browse files
Move libs from bin to lib and remove bin
1 parent 4bc265b commit 6a84fca

File tree

5 files changed

+2
-2
lines changed

5 files changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ add_executable(${APP_NAME} main.cpp)
1515
if(WIN32)
1616
# Neccessary variables
1717
SET(LINK_GL_LIBS ${CMAKE_SOURCE_DIR}/lib/win/${ARCHITECTURE_TO_USE})
18-
set(GLEW_SHARED_LIB ${CMAKE_SOURCE_DIR}/bin/win/${ARCHITECTURE_TO_USE}/glew32.dll)
18+
set(GLEW_SHARED_LIB ${LINK_GL_LIBS}/glew32.dll)
1919
set(GLEW_STATIC_LIB ${LINK_GL_LIBS}/glew32.lib)
2020
set(GLFW_STATIC_LIB ${LINK_GL_LIBS}/glfw3.lib)
2121
# Copy the GLEW static lib
@@ -27,7 +27,7 @@ else()
2727
SET(LINK_GL_LIBS ${CMAKE_SOURCE_DIR}/lib/linux)
2828
set(GLFW_STATIC_LIB ${LINK_GL_LIBS}/libglfw3.a)
2929
set(GLEW_STATIC_LIB ${LINK_GL_LIBS}/libGLEW.a)
30-
set(GLEW_SHARED_LIB ${CMAKE_SOURCE_DIR}/bin/linux/libGLEW.so.2.1)
30+
set(GLEW_SHARED_LIB ${LINK_GL_LIBS}/libGLEW.so.2.1)
3131

3232
# Link linux dependencies
3333
find_package(X11 REQUIRED)

bin/win/x86/glewinfo.exe

-356 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)