Skip to content

Commit b6d45dd

Browse files
authored
Merge pull request #1 from ACRIOS-Systems/feature/add_missing
Complex changes
2 parents 44ccd88 + a76113b commit b6d45dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+5061
-1842
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
__pycache__
33
*.pyc
44
.DS_Store
5+
build
6+
pyUBX.egg-info

.vscode/settings.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"files.associations": {
3+
"*.log": "log",
4+
"compare": "cpp",
5+
"string_view": "cpp",
6+
"memory": "cpp",
7+
"bit": "cpp",
8+
"*.tcc": "cpp",
9+
"cctype": "cpp",
10+
"clocale": "cpp",
11+
"cmath": "cpp",
12+
"concepts": "cpp",
13+
"cstddef": "cpp",
14+
"cstdint": "cpp",
15+
"cstdio": "cpp",
16+
"cstdlib": "cpp",
17+
"cstring": "cpp",
18+
"cwchar": "cpp",
19+
"cwctype": "cpp",
20+
"exception": "cpp",
21+
"initializer_list": "cpp",
22+
"iosfwd": "cpp",
23+
"limits": "cpp",
24+
"new": "cpp",
25+
"numbers": "cpp",
26+
"ostream": "cpp",
27+
"stdexcept": "cpp",
28+
"streambuf": "cpp",
29+
"string": "cpp",
30+
"system_error": "cpp",
31+
"tuple": "cpp",
32+
"type_traits": "cpp",
33+
"typeinfo": "cpp",
34+
"utility": "cpp"
35+
}
36+
}

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
all: lang/cpp/src
2-
./ubx/generateCpp.py
2+
pip install .
3+
./ubx/generateCPP.py
34

4-
test:
5+
test: all
56
make -C lang/cpp/ test
67
python tests/tests.py
78
python tests/test_relposned.py

0 commit comments

Comments
 (0)