1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-17 23:57:14 +02:00

Backport MaxmindDB.

This commit is contained in:
Sandu Liviu Catalin
2021-01-31 18:48:31 +02:00
parent ea751be7b1
commit fd2a1de107
88 changed files with 15355 additions and 8 deletions

13
vendor/MaxmindDB/bin/CMakeLists.txt vendored Normal file
View File

@ -0,0 +1,13 @@
# getopt is required by mmdblookup which is not available by default on Windows
if(NOT WIN32)
add_executable(mmdblookup
mmdblookup.c
)
target_link_libraries(mmdblookup maxminddb pthread)
install(
TARGETS mmdblookup
RUNTIME DESTINATION bin
)
endif()