2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-11 04:45:53 +00:00
metaforce/hecl/lib/Backend/CMakeLists.txt
2016-09-18 13:46:49 -10:00

15 lines
219 B
CMake

if(WIN32)
set(PLAT_SRCS HLSL.cpp)
endif()
if(APPLE)
set(PLAT_SRCS Metal.cpp)
endif()
set(BACKEND_SOURCES
GX.cpp
ProgrammableCommon.cpp
GLSL.cpp
${PLAT_SRCS})
hecl_add_list(Backend BACKEND_SOURCES)