Changeset - r24879:89d0ee92066a
[Not reviewed]
master
0 7 5
Michael Lutz - 3 years ago 2021-01-16 15:43:04
michi@icosahedron.de
Add: [Win32] Video driver that uses OpenGL to transfer the video buffer to the screen.
3 files changed:
0 comments (0 inline, 0 general)
CMakeLists.txt
Show inline comments
 
@@ -135,6 +135,10 @@ if(NOT WIN32)
 
    endif()
 
endif()
 

	
 
if(NOT EMSCRIPTEN)
 
    find_package(OpenGL COMPONENTS OpenGL)
 
endif()
 

	
 
if(MSVC)
 
    find_package(Editbin REQUIRED)
 
endif()
 
@@ -245,6 +249,7 @@ if(NOT OPTION_DEDICATED)
 
    link_package(Fontconfig TARGET Fontconfig::Fontconfig)
 
    link_package(ICU_lx)
 
    link_package(ICU_i18n)
 
    link_package(OpenGL TARGET OpenGL::GL)
 
endif()
 

	
 
if(APPLE)
src/3rdparty/CMakeLists.txt
Show inline comments
 
add_subdirectory(md5)
 
add_subdirectory(squirrel)
 
add_subdirectory(opengl)
 
add_subdirectory(os2)
src/3rdparty/opengl/CMakeLists.txt
Show inline comments
 
new file 100644
 
add_files(
 
    khrplatform.h
 
    glext.h
 
    CONDITION OPENGL_FOUND
 
)

Changeset was too big and was cut off... Show full diff anyway

0 comments (0 inline, 0 general)