mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-22 19:55:23 +00:00
b9da6b59ff
Update physics module, minor cleanups, remove unused code.
35 lines
545 B
CMake
35 lines
545 B
CMake
set(HEADERS
|
|
dmfcinputcommands.h
|
|
dmfcinternal.h
|
|
encryption.h)
|
|
|
|
set(CPPS
|
|
dmfcbase.cpp
|
|
dmfccfg.cpp
|
|
dmfcclient.cpp
|
|
dmfcfunctions.cpp
|
|
dmfchudmessages.cpp
|
|
dmfcinputcommand.cpp
|
|
dmfcmenu.cpp
|
|
dmfcpackets.cpp
|
|
dmfcpinfo.cpp
|
|
dmfcprecord.cpp
|
|
dmfcremote.cpp
|
|
dmfcserver.cpp
|
|
dmfcstats.cpp
|
|
dmfctimer.cpp
|
|
dmfcui.cpp
|
|
dmfcvirtual.cpp
|
|
idmfc.cpp
|
|
encryption.cpp
|
|
dmfcinterface.cpp)
|
|
|
|
add_definitions(-DOUTRAGE_VERSION)
|
|
|
|
add_library(dmfc STATIC ${HEADERS} ${CPPS})
|
|
target_link_libraries(dmfc PUBLIC
|
|
grtext
|
|
misc
|
|
physics
|
|
)
|