mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Don't add superfluous whitespace to the CMake file
This commit is contained in:
@ -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()
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user