mirror of
https://github.com/kevinbentley/Descent3.git
synced 2025-01-23 12:08:56 +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
31 lines
510 B
CMake
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})
|