summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/plugins/filter_geoip2/libmaxminddb/bin/CMakeLists.txt
blob: 9026be83bf7605402be8af33a92f6e4a877bbde2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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()