mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-07-07 14:05:52 +00:00
13 lines
215 B
CMake
13 lines
215 B
CMake
if(WIN32)
|
|
set(PLAT_SRCS HLSL.cpp)
|
|
endif()
|
|
if(APPLE)
|
|
set(PLAT_SRCS Metal.cpp)
|
|
endif()
|
|
|
|
add_library(HECLBackend
|
|
GX.cpp
|
|
ProgrammableCommon.cpp
|
|
GLSL.cpp
|
|
${PLAT_SRCS})
|