mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 11:28:56 +00:00
22 lines
294 B
CMake
22 lines
294 B
CMake
|
SET (HEADERS mvegfx.h
|
||
|
mvelibi.h
|
||
|
mvelibl.h
|
||
|
platform.h
|
||
|
snd8to16.h
|
||
|
SystemInterfaces.h )
|
||
|
SET (CPPS
|
||
|
mveasm.cpp
|
||
|
mvelibl.cpp
|
||
|
platform.cpp)
|
||
|
|
||
|
|
||
|
|
||
|
SET (PLATFORM_CPPS )
|
||
|
|
||
|
IF (UNIX)
|
||
|
SET (PLATFORM_CPPS "lnxdsound.cpp")
|
||
|
ENDIF()
|
||
|
|
||
|
ADD_LIBRARY(libmve STATIC ${HEADERS} ${CPPS} ${PLATFORM_CPPS})
|
||
|
|