DarkflameServer/thirdparty/MD5/CMakeLists.txt
David Markowitz 62b670d283
remove sha512, move md5 to thirdparty (#1443)
title.

Tested that Auth runs and I can login still.
2024-02-09 09:15:28 -06: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()