2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-10 02:45:52 +00:00
metaforce/hecl/lib/Backend/CMakeLists.txt
2016-03-04 13:02:44 -10:00

13 lines
216 B
CMake

if(WIN32)
set(PLAT_SRCS HLSL.cpp)
endif()
if(APPLE)
set(PLAT_SRCS Metal.cpp)
endif()
add_library(hecl-backend
GX.cpp
ProgrammableCommon.cpp
GLSL.cpp
${PLAT_SRCS})