aboutsummaryrefslogtreecommitdiffstats
path: root/host/examples/getopt/CMakeLists.txt
blob: 4fe8ab43d8438f6baabad74ab8280baa3ce334d7 (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
)