mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-04 12:35:52 +00:00
13 lines
241 B
CMake
13 lines
241 B
CMake
if(NOT WINDOWS_STORE)
|
|
list(APPEND PLAT_SRCS GLSL.cpp HLSL.cpp Metal.cpp)
|
|
else()
|
|
list(APPEND PLAT_SRCS HLSL.cpp)
|
|
endif()
|
|
|
|
set(BACKEND_SOURCES
|
|
GX.cpp
|
|
ProgrammableCommon.cpp
|
|
${PLAT_SRCS})
|
|
|
|
hecl_add_list(Backend BACKEND_SOURCES)
|