diff options
| author | 2017-05-27 19:46:26 -0700 | |
|---|---|---|
| committer | 2017-05-27 20:48:00 -0700 | |
| commit | 089baa04e851676c1c04e640ef137b9025d6e5dc (patch) | |
| tree | 52f33c4ab0f63189e05337df817ebc8a92e06c94 /src | |
| 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 'src')
| -rw-r--r-- | src/citra/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | src/citra_qt/CMakeLists.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/citra/CMakeLists.txt b/src/citra/CMakeLists.txt index 9eddb342b..f6f2e8e91 100644 --- a/src/citra/CMakeLists.txt +++ b/src/citra/CMakeLists.txt | |||
| @@ -19,7 +19,7 @@ include_directories(${SDL2_INCLUDE_DIR}) | |||
| 19 | 19 | ||
| 20 | add_executable(citra ${SRCS} ${HEADERS}) | 20 | add_executable(citra ${SRCS} ${HEADERS}) |
| 21 | target_link_libraries(citra PRIVATE common core input_common) | 21 | target_link_libraries(citra PRIVATE common core input_common) |
| 22 | target_link_libraries(citra PRIVATE ${SDL2_LIBRARY} ${OPENGL_gl_LIBRARY} inih glad) | 22 | target_link_libraries(citra PRIVATE ${SDL2_LIBRARY} inih glad) |
| 23 | if (MSVC) | 23 | if (MSVC) |
| 24 | target_link_libraries(citra PRIVATE getopt) | 24 | target_link_libraries(citra PRIVATE getopt) |
| 25 | endif() | 25 | endif() |
diff --git a/src/citra_qt/CMakeLists.txt b/src/citra_qt/CMakeLists.txt index e2b77a34f..839ce600b 100644 --- a/src/citra_qt/CMakeLists.txt +++ b/src/citra_qt/CMakeLists.txt | |||
| @@ -92,7 +92,7 @@ else() | |||
| 92 | add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS}) | 92 | add_executable(citra-qt ${SRCS} ${HEADERS} ${UI_HDRS}) |
| 93 | endif() | 93 | endif() |
| 94 | target_link_libraries(citra-qt PRIVATE audio_core common core input_common video_core) | 94 | target_link_libraries(citra-qt PRIVATE audio_core common core input_common video_core) |
| 95 | target_link_libraries(citra-qt PRIVATE ${OPENGL_gl_LIBRARY} ${CITRA_QT_LIBS} Boost::boost glad) | 95 | target_link_libraries(citra-qt PRIVATE ${CITRA_QT_LIBS} Boost::boost glad) |
| 96 | target_link_libraries(citra-qt PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) | 96 | target_link_libraries(citra-qt PRIVATE ${PLATFORM_LIBRARIES} Threads::Threads) |
| 97 | 97 | ||
| 98 | if(UNIX AND NOT APPLE) | 98 | if(UNIX AND NOT APPLE) |