1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/MaxmindDB/bin/CMakeLists.txt

14 lines
265 B
CMake
Raw Normal View History

2021-01-31 17:48:31 +01:00
# 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
2021-08-22 19:15:19 +02:00
DESTINATION bin
2021-01-31 17:48:31 +01:00
)
endif()