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
21 lines
287 B
CMake
21 lines
287 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})
|
|
|