Descent3/lnxmvelib/CMakeLists.txt
Ryan C. Gordon 6a18afab7c
Remove references to X11 and glX.
This is all in unused/unnecessary/leftover code, but the code wouldn't
build without Xlib headers on the system, which was forcing the Mac builds
to install xquartz.

This also removes renderer/SoftwareOpenGL*, which was _not_ a
software-rendered OpenGL, but just an older version of the same code that's
in HardwareOpenGL.cpp--old enough to still talk to glX directly, which is
what caught my attention.
2024-04-30 12:08:03 -04:00

18 lines
224 B
CMake

set(HEADERS
dyna_pthread.h
lnxdsound.h
mvegfx.h
mvelibi.h
mvelibl.h
snd8to16.h)
set(CPPS
lnxdraw.cpp
lnxdsound.cpp
mveasm.cpp
mvelibl.cpp)
# asmstub.c
add_library(lnxmvelib STATIC ${HEADERS} ${CPPS})