DarkflameServer/thirdparty/MD5/CMakeLists.txt
David Markowitz 19103a7e0e remove sha512, move md5 to thirdparty
title.

Tested that Auth runs and I can login still.
2024-02-02 21:16:20 -08:00

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()