2024-04-21 09:02:27 +00:00
|
|
|
set(HEADERS
|
|
|
|
dyna_gl.h
|
|
|
|
HardwareInternal.h
|
|
|
|
RendererConfig.h
|
|
|
|
SoftwareInternal.h)
|
2024-04-20 12:35:20 +00:00
|
|
|
set(CPPS
|
2024-04-21 09:02:27 +00:00
|
|
|
HardwareClipper.cpp
|
|
|
|
HardwareDraw.cpp
|
|
|
|
HardwareGlobalVars.cpp
|
|
|
|
HardwareInstance.cpp
|
|
|
|
HardwareOpenGL.cpp
|
|
|
|
HardwarePoints.cpp
|
|
|
|
HardwareSetup.cpp
|
|
|
|
HardwareTransforms.cpp
|
|
|
|
|
|
|
|
SoftwareClipper.cpp
|
|
|
|
SoftwareDraw.cpp
|
|
|
|
SoftwareGlobalVars.cpp
|
|
|
|
SoftwareInstance.cpp
|
|
|
|
SoftwarePoints.cpp
|
|
|
|
SoftwareSetup.cpp)
|
2024-04-16 03:43:29 +00:00
|
|
|
|
2024-04-20 12:35:20 +00:00
|
|
|
if(UNIX)
|
2024-04-21 09:02:27 +00:00
|
|
|
set(CPPS ${CPPS} lnxscreenmode.cpp)
|
2024-04-20 12:35:20 +00:00
|
|
|
endif()
|
2024-04-16 03:43:29 +00:00
|
|
|
|
|
|
|
# These are excluded.
|
|
|
|
#opengl.cpp
|
|
|
|
#renderer.cpp
|
|
|
|
#Direct3D.cpp
|
|
|
|
|
2024-04-21 09:02:27 +00:00
|
|
|
add_library(renderer STATIC ${HEADERS} ${CPPS})
|