diff --git a/telldus-core/3rdparty/openbsd-getopt/CMakeLists.txt b/telldus-core/3rdparty/openbsd-getopt/CMakeLists.txt new file mode 100644 index 00000000..89080c41 --- /dev/null +++ b/telldus-core/3rdparty/openbsd-getopt/CMakeLists.txt @@ -0,0 +1,14 @@ +SET( SRCS + getopt_long.c +) + +SET( HDRS + getopt.h +) + +INCLUDE_DIRECTORIES( ${CMAKE_CURRENT_SOURCE_DIR} ) + +ADD_LIBRARY(openbsd-getopt STATIC + ${SRCS} + ${HDRS} +)