Files
2025-11-21 18:12:55 +01:00

15 lines
157 B
CMake

SET( SRCS
getopt_long.c
)
SET( HDRS
getopt.h
)
INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} )
ADD_LIBRARY(openbsd-getopt STATIC
${SRCS}
${HDRS}
)