Skip to content

Commit c1af6e4

Browse files
authored
Merge pull request #36 from kostrykin/develop
Update to v3.4.0
2 parents 8de7d77 + f385eb2 commit c1af6e4

File tree

2,728 files changed

+153520
-185453
lines changed

Some content is hidden

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

2,728 files changed

+153520
-185453
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
name: ${{ matrix.variant }}-${{ matrix.build }}-test_output
5656
path: build/make_${{ matrix.build }}/test/test_output/
5757

58-
- name: Test FindCarna.cmake
58+
- name: Test FindLibCarna.cmake
5959
if: ${{ matrix.variant == 'egl' }}
6060
run: ./test.sh ${{ matrix.build }}
6161
working-directory: test_cmake
@@ -75,13 +75,14 @@ jobs:
7575
- uses: actions/checkout@v4
7676

7777
- name: Install dependencies
78-
run: sudo apt-get install libeigen3-dev libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev libglew-dev doxygen
78+
run: sudo apt-get install libeigen3-dev libglfw3-dev libgl1-mesa-dev libglu1-mesa-dev libglew-dev doxygen graphviz
7979

8080
- run: rm -rf docs
8181

8282
- run: ./linux_build-egl.bash
8383
env:
8484
BUILD: only_release
85+
LIBCARNA_BUILD_DOCS: 1
8586

8687
- uses: peter-evans/create-pull-request@v7
8788
if: ${{ github.event_name == 'push' }}

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/build
22
/test_cmake/build
3-
/include/Carna/Version.h
3+
/include/LibCarna/Version.hpp
44
/src/doc/Doxyfile
55
*~
66
*.swp
7+
/docs/**/*.md5
8+
/docs/**/*.map

.vscode/settings.json

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
{
2+
"search.exclude": {
3+
"docs": true
4+
},
5+
"editor.rulers": [
6+
119
7+
],
8+
"editor.detectIndentation": false,
9+
"editor.tabSize": 4,
10+
"files.associations": {
11+
"cctype": "cpp",
12+
"clocale": "cpp",
13+
"cmath": "cpp",
14+
"csignal": "cpp",
15+
"cstdarg": "cpp",
16+
"cstddef": "cpp",
17+
"cstdio": "cpp",
18+
"cstdlib": "cpp",
19+
"cstring": "cpp",
20+
"ctime": "cpp",
21+
"cwchar": "cpp",
22+
"cwctype": "cpp",
23+
"array": "cpp",
24+
"atomic": "cpp",
25+
"bit": "cpp",
26+
"bitset": "cpp",
27+
"charconv": "cpp",
28+
"chrono": "cpp",
29+
"compare": "cpp",
30+
"complex": "cpp",
31+
"concepts": "cpp",
32+
"condition_variable": "cpp",
33+
"cstdint": "cpp",
34+
"deque": "cpp",
35+
"list": "cpp",
36+
"map": "cpp",
37+
"set": "cpp",
38+
"string": "cpp",
39+
"unordered_map": "cpp",
40+
"unordered_set": "cpp",
41+
"vector": "cpp",
42+
"exception": "cpp",
43+
"algorithm": "cpp",
44+
"functional": "cpp",
45+
"iterator": "cpp",
46+
"memory": "cpp",
47+
"memory_resource": "cpp",
48+
"numeric": "cpp",
49+
"optional": "cpp",
50+
"random": "cpp",
51+
"ratio": "cpp",
52+
"regex": "cpp",
53+
"source_location": "cpp",
54+
"string_view": "cpp",
55+
"system_error": "cpp",
56+
"tuple": "cpp",
57+
"type_traits": "cpp",
58+
"utility": "cpp",
59+
"format": "cpp",
60+
"fstream": "cpp",
61+
"future": "cpp",
62+
"initializer_list": "cpp",
63+
"iomanip": "cpp",
64+
"iosfwd": "cpp",
65+
"iostream": "cpp",
66+
"istream": "cpp",
67+
"limits": "cpp",
68+
"mutex": "cpp",
69+
"new": "cpp",
70+
"numbers": "cpp",
71+
"ostream": "cpp",
72+
"semaphore": "cpp",
73+
"span": "cpp",
74+
"sstream": "cpp",
75+
"stdexcept": "cpp",
76+
"stop_token": "cpp",
77+
"streambuf": "cpp",
78+
"thread": "cpp",
79+
"cinttypes": "cpp",
80+
"typeinfo": "cpp",
81+
"variant": "cpp",
82+
"*.in": "cpp"
83+
}
84+
}

0 commit comments

Comments
 (0)