mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-03 06:39:33 +00:00
Don't add superfluous whitespace to the CMake file
This commit is contained in:
parent
2d4c3c7c91
commit
93f72d8463
1 changed files with 5 additions and 15 deletions
|
@ -84,28 +84,18 @@ else()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(USE_EGL)
|
if(USE_EGL)
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS} Src/GLInterface/EGL.cpp)
|
||||||
Src/GLInterface/EGL.cpp
|
|
||||||
)
|
|
||||||
else()
|
else()
|
||||||
if(WIN32)
|
if(WIN32)
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS} Src/GLInterface/GLW.cpp)
|
||||||
Src/GLInterface/GLW.cpp
|
|
||||||
)
|
|
||||||
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
elseif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||||
if(USE_WX)
|
if(USE_WX)
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS} Src/GLInterface/WX.cpp)
|
||||||
Src/GLInterface/WX.cpp
|
|
||||||
)
|
|
||||||
else()
|
else()
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS} Src/GLInterface/AGL.cpp)
|
||||||
Src/GLInterface/AGL.cpp
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
else()
|
else()
|
||||||
set(SRCS ${SRCS}
|
set(SRCS ${SRCS} Src/GLInterface/GLX.cpp)
|
||||||
Src/GLInterface/GLX.cpp
|
|
||||||
)
|
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue