Compare commits
1 commit
8fe8fbb493
...
dd83815498
| Author | SHA1 | Date | |
|---|---|---|---|
| dd83815498 |
2 changed files with 6 additions and 1 deletions
|
|
@ -34,10 +34,13 @@ if(USE_VENDORED_LIBRARIES)
|
||||||
set(CGLM_LIBRARIES cglm)
|
set(CGLM_LIBRARIES cglm)
|
||||||
set(CGLM_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/extern/cglm/include)
|
set(CGLM_INCLUDE_DIRS ${CMAKE_SOURCE_DIR}/extern/cglm/include)
|
||||||
|
|
||||||
|
find_package(EGL REQUIRED)
|
||||||
|
add_definitions(-DEGL)
|
||||||
|
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
set(BUILD_UTILS OFF CACHE INTERNAL "")
|
set(BUILD_UTILS OFF CACHE INTERNAL "")
|
||||||
set(BUILD_SHARED_LIBS OFF CACHE INTERNAL "")
|
set(BUILD_SHARED_LIBS OFF CACHE INTERNAL "")
|
||||||
add_definitions(-DGLEW_STATIC)
|
add_definitions(-DGLEW_STATIC -DGLEW_X11=OFF)
|
||||||
cmake_policy(SET CMP0135 NEW) #DOWNLOAD_EXTRACT_TIMESTAMP
|
cmake_policy(SET CMP0135 NEW) #DOWNLOAD_EXTRACT_TIMESTAMP
|
||||||
FetchContent_Declare(
|
FetchContent_Declare(
|
||||||
glew
|
glew
|
||||||
|
|
@ -94,4 +97,5 @@ target_link_libraries(${PROJECT_NAME} PRIVATE
|
||||||
${CGLM_LIBRARIES}
|
${CGLM_LIBRARIES}
|
||||||
${GLEW_LIBRARIES}
|
${GLEW_LIBRARIES}
|
||||||
${OPENGL_LIBRARIES}
|
${OPENGL_LIBRARIES}
|
||||||
|
${EGL_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,7 @@ wn_window *wn_window_init(Arena *arena) {
|
||||||
if (glewError != GLEW_OK) {
|
if (glewError != GLEW_OK) {
|
||||||
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Error initializing GLEW! %s",
|
SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, "Error initializing GLEW! %s",
|
||||||
glewGetErrorString(glewError));
|
glewGetErrorString(glewError));
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!SDL_GL_MakeCurrent(window->window, window->glcontext)) {
|
if (!SDL_GL_MakeCurrent(window->window, window->glcontext)) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue