blob: 386075ae6426d67d4cbac3e2c432f31c2261bc44 (
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-or-later
#
########################################################################
# 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
)
|