aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/getopt/CMakeLists.txt
blob: 0475721084d9e149c8d10df56ca4945ff59ea6e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Copyright 2015 Ettus Research LLC
# Copyright 2018 Ettus Research, a National Instruments Company
#
# SPDX-License-Identifier: GPL-3.0
#

########################################################################
# getopt library for C examples since MSVC does not include it
########################################################################
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIRECTORY})
ADD_LIBRARY(getopt STATIC
    ${CMAKE_CURRENT_SOURCE_DIR}/getopt.c
)