1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 12:07:13 +01:00
SqMod/vendor/MaxmindDB/bin/CMakeLists.txt

14 lines
273 B
CMake
Raw Normal View History

2021-01-31 18:48:31 +02: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
RUNTIME DESTINATION bin
)
endif()