Descent3/netgames/dmfc/CMakeLists.txt
Azamat H. Hackimov b9da6b59ff Isolate physics module
Update physics module, minor cleanups, remove unused code.
2024-07-28 16:50:42 +03:00

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
)