mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
7 lines
201 B
CMake
7 lines
201 B
CMake
|
add_library(MD5 "MD5.cpp")
|
||
|
|
||
|
# Disable deprecation warnings on MD5.cpp for Apple Clang
|
||
|
if (APPLE)
|
||
|
set_source_files_properties("MD5.cpp" PROPERTIES COMPILE_FLAGS "-Wno-deprecated-declarations")
|
||
|
endif()
|