Skip to content

Commit f43a341

Browse files
committed
Replace cxxopts with args
1 parent bd3299e commit f43a341

File tree

7 files changed

+2043
-3051
lines changed

7 files changed

+2043
-3051
lines changed

.clang-tidy

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
Checks: >
2-
clang-diagnostic-*,
32
clang-analyzer-*,
43
bugprone-*,
54
-bugprone-easily-swappable-parameters,

Makefile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ prefix := /usr/local
22
exec_prefix := $(prefix)
33
bindir := $(exec_prefix)/bin
44

5-
SRC_DIR := src
6-
OUT_DIR := build
7-
EXTERNAL_DIR := external
8-
5+
SRC_DIR := src
6+
OUT_DIR := build
97
TEST_COMMON_DIR := tests/common
108
TEST_MOCK_DIR := tests/mock
119
BIND_CASES_DIR := tests/cases/bind
@@ -26,7 +24,7 @@ LDFLAGS += $(shell pkg-config --libs-only-L $(LIBRARIES))
2624
LDLIBS += $(shell pkg-config --libs-only-l $(LIBRARIES))
2725

2826
BIN_CXXFLAGS := $(CXXFLAGS)
29-
BIN_CPPFLAGS := $(CPPFLAGS) -I $(EXTERNAL_DIR)/cxxopts
27+
BIN_CPPFLAGS := $(CPPFLAGS) -I vendor
3028
BIND_CXXFLAGS := $(CXXFLAGS) $(DEBUG_CXXFLAGS)
3129
BIND_CPPFLAGS := $(CPPFLAGS) -I $(TEST_COMMON_DIR)
3230
# Mock tests must not include debug flags because they contain `-fsanitize` which prevents the mock functions from being used.

compile_flags.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
-Isrc
33
-Itests/common
44
-Itests/mock
5-
-Iexternal/cxxopts
5+
-Ivendor

external/VERSIONS.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)