Descent3/netgames/dmfc/CMakeLists.txt
Azamat H. Hackimov 45aa389f68 Move content from dmfcdllinit.h
Simplify code.
2024-07-08 11:15:18 +03:00

33 lines
527 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 PRIVATE
misc
)