diff options
| author | 2017-05-27 19:46:26 -0700 | |
|---|---|---|
| committer | 2017-05-27 20:48:00 -0700 | |
| commit | 089baa04e851676c1c04e640ef137b9025d6e5dc (patch) | |
| tree | 52f33c4ab0f63189e05337df817ebc8a92e06c94 /externals/glad | |
| parent | CMake: Use append instead of set to modify list (diff) | |
| download | yuzu-089baa04e851676c1c04e640ef137b9025d6e5dc.tar.gz yuzu-089baa04e851676c1c04e640ef137b9025d6e5dc.tar.xz yuzu-089baa04e851676c1c04e640ef137b9025d6e5dc.zip | |
CMake: Stop using FindOpenGL, which seems to not be required anymore
Diffstat (limited to 'externals/glad')
| -rw-r--r-- | externals/glad/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/externals/glad/CMakeLists.txt b/externals/glad/CMakeLists.txt index a97d4aa73..6d35a844b 100644 --- a/externals/glad/CMakeLists.txt +++ b/externals/glad/CMakeLists.txt | |||
| @@ -9,6 +9,7 @@ set(HEADERS | |||
| 9 | create_directory_groups(${SRCS} ${HEADERS}) | 9 | create_directory_groups(${SRCS} ${HEADERS}) |
| 10 | add_library(glad STATIC ${SRCS} ${HEADERS}) | 10 | add_library(glad STATIC ${SRCS} ${HEADERS}) |
| 11 | target_include_directories(glad PUBLIC "include/") | 11 | target_include_directories(glad PUBLIC "include/") |
| 12 | |||
| 12 | if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux") | 13 | if ("${CMAKE_SYSTEM_NAME}" MATCHES "Linux") |
| 13 | target_link_libraries(glad dl) | 14 | target_link_libraries(glad PRIVATE dl) |
| 14 | endif() | 15 | endif() |