mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
00389c50ea
- tabs to spaces - use Unix line endings everywhere - newline at end of file - remove trailing white space - no space between keywords and opening parenthesis - use 2 spaces to indent
35 lines
624 B
CMake
35 lines
624 B
CMake
set(HEADERS
|
|
dyna_gl.h
|
|
HardwareInternal.h
|
|
RendererConfig.h
|
|
SoftwareInternal.h)
|
|
set(CPPS
|
|
HardwareClipper.cpp
|
|
HardwareDraw.cpp
|
|
HardwareGlobalVars.cpp
|
|
HardwareInstance.cpp
|
|
HardwareOpenGL.cpp
|
|
HardwarePoints.cpp
|
|
HardwareSetup.cpp
|
|
HardwareTransforms.cpp
|
|
|
|
SoftwareClipper.cpp
|
|
SoftwareDraw.cpp
|
|
SoftwareGlobalVars.cpp
|
|
SoftwareInstance.cpp
|
|
SoftwareOpenGL.cpp
|
|
SoftwareOpenGLMeshBuilder.cpp
|
|
SoftwarePoints.cpp
|
|
SoftwareSetup.cpp)
|
|
|
|
if(UNIX)
|
|
set(CPPS ${CPPS} lnxscreenmode.cpp)
|
|
endif()
|
|
|
|
# These are excluded.
|
|
#opengl.cpp
|
|
#renderer.cpp
|
|
#Direct3D.cpp
|
|
|
|
add_library(renderer STATIC ${HEADERS} ${CPPS})
|