1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-08-05 23:51:48 +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

View File

@@ -49,12 +49,12 @@ else()
endif()
# Determine if build mode
if(CMAKE_BUILD_TYPE MATCHES "(Debug)+")
if(${CMAKE_BUILD_TYPE} MATCHES "(Debug)+")
add_compile_options(-g)
endif()
# Enable position independent code
if(UNIX)
if (${CMAKE_SYSTEM_NAME} MATCHES "Linux")
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
endif()