d60d9120b4
It was working for me as it was before, but based on this comment: 10488bc79a (commitcomment-17724549)
it looks that some cmake versions may ignore definitions that are defined below add_library.
20 lines
475 B
CMake
20 lines
475 B
CMake
# CMakeLists.txt - glew
|
|
|
|
include_directories("include")
|
|
|
|
if(APPLE)
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -arch x86_64")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -arch x86_64 -F/Library/Frameworks")
|
|
endif()
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
include_directories(${OPENGL_INCLUDE_DIR})
|
|
|
|
add_definitions(-DGLEW_STATIC)
|
|
add_definitions(-DGLEW_NO_GLU)
|
|
|
|
add_library(glew STATIC
|
|
include/GL/glew.h include/GL/glxew.h include/GL/wglew.h
|
|
src/glew.c src/glewinfo.c
|
|
)
|