mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
7ba009b811
Update rtperformance module, minor cleanups.
32 lines
487 B
CMake
32 lines
487 B
CMake
set(HEADERS
|
|
dyna_gl.h
|
|
HardwareInternal.h
|
|
)
|
|
set(CPPS
|
|
HardwareClipper.cpp
|
|
HardwareDraw.cpp
|
|
HardwareGlobalVars.cpp
|
|
HardwareInstance.cpp
|
|
HardwareOpenGL.cpp
|
|
HardwareBaseGPU.cpp
|
|
HardwarePoints.cpp
|
|
HardwareSetup.cpp
|
|
HardwareTransforms.cpp
|
|
lnxscreenmode.cpp
|
|
)
|
|
|
|
# These are excluded.
|
|
#opengl.cpp
|
|
#renderer.cpp
|
|
#Direct3D.cpp
|
|
|
|
add_library(renderer STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(renderer PRIVATE
|
|
SDL2::SDL2
|
|
bitmap
|
|
ddio
|
|
mem
|
|
misc
|
|
rtperformance
|
|
)
|