summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2021-09-26 22:02:04 -0400
committerEdward Thomson <ethomson@edwardthomson.com>2021-10-02 13:45:48 -0400
commitdddac89783f918417abc35245b7f285376112b67 (patch)
treecc1cb5d177019a4f7324e5cc6dba75438f9232ea
parent96748f526e55d40708ea2cba88272dc80408c7e5 (diff)
downloadlibgit2-dddac89783f918417abc35245b7f285376112b67.tar.gz
cmake: remove unused STDCALL option
The `STDCALL` option was removed; remove the (unreachable) error message.
-rw-r--r--CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index cab0cb268..fa2264524 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -97,10 +97,6 @@ ENDIF()
# Platform specific compilation flags
IF (MSVC)
- IF (STDCALL)
- MESSAGE(FATAL_ERROR "The STDCALL option is no longer supported; libgit2 is now always built as a cdecl library. If you're using PInvoke, please add the CallingConventions.Cdecl attribute for support.")
- ENDIF()
-
ADD_DEFINITIONS(-D_SCL_SECURE_NO_WARNINGS)
ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE)
ADD_DEFINITIONS(-D_CRT_NONSTDC_NO_DEPRECATE)