summaryrefslogtreecommitdiff
path: root/src/share/getopt/CMakeLists.txt
blob: 83b530e5c3862d0b0df1f82e2c140f89c77675ad (plain)
1
2
3
4
5
6
7
8
9
10
11
check_include_file("string.h" HAVE_STRING_H)

find_package(Intl)

add_library(getopt STATIC getopt.c getopt1.c)

if(Intl_FOUND)
    target_include_directories(getopt PRIVATE ${Intl_INCLUDE_DIRS})
    target_link_libraries(getopt PUBLIC ${Intl_LIBRARIES})
    target_compile_definitions(getopt PRIVATE HAVE_LIBINTL_H)
endif()