diff options
| author | 2017-05-27 19:46:26 -0700 | |
|---|---|---|
| committer | 2017-05-27 20:48:00 -0700 | |
| commit | 089baa04e851676c1c04e640ef137b9025d6e5dc (patch) | |
| tree | 52f33c4ab0f63189e05337df817ebc8a92e06c94 /src/citra | |
| 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/citra')
| -rw-r--r-- | src/citra/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 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() |