Descent3/netgames/dmfc/CMakeLists.txt
Thomas Otto 00389c50ea Some more CMake white space formatting
- 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
2024-04-21 11:46:32 +02:00

31 lines
510 B
CMake

set(HEADERS
dmfcdllinit.h
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 -DDMFC_DLL)
add_library(dmfc STATIC ${HEADERS} ${CPPS})