2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-07 14:05:52 +00:00
metaforce/hecl/lib/Backend/CMakeLists.txt
2015-11-18 13:56:45 -10:00

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})