metaforce/hecl/lib/Backend/CMakeLists.txt

13 lines
216 B
CMake
Raw Normal View History

2015-11-18 23:56:45 +00:00
if(WIN32)
set(PLAT_SRCS HLSL.cpp)
endif()
if(APPLE)
set(PLAT_SRCS Metal.cpp)
endif()
2016-03-04 23:02:44 +00:00
add_library(hecl-backend
2015-11-10 02:06:27 +00:00
GX.cpp
2015-11-10 23:17:53 +00:00
ProgrammableCommon.cpp
GLSL.cpp
2015-11-18 23:56:45 +00:00
${PLAT_SRCS})