Skip to content

Commit d0c42f1

Browse files
Al-khwarizmi-780Mohanad Youssef
andauthored
change folder structure (#16)
* change folder structure * revert clang format identation option * change ident width * remove unintended newly added files * clang format for types.h --------- Co-authored-by: Mohanad Youssef <info.codingcorner@gmail.com>
1 parent 1cc0b4b commit d0c42f1

273 files changed

Lines changed: 142 additions & 33 deletions

File tree

Some content is hidden

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

.vscode/c_cpp_properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"${workspaceFolder}/**"
77
],
88
"defines": [],
9-
"compilerPath": "/usr/bin/clang-14",
9+
"compilerPath": "/usr/bin/g++-11",
1010
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
1111
"cStandard": "c17",
1212
"cppStandard": "c++14",

.vscode/settings.json

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,75 @@
55
"clang-format.style": "file",
66
"clang-format.fallbackStyle": "Google",
77
"clang-format.language.cpp.enable": true,
8+
"files.associations": {
9+
"array": "cpp",
10+
"cctype": "cpp",
11+
"clocale": "cpp",
12+
"cmath": "cpp",
13+
"cstdarg": "cpp",
14+
"cstddef": "cpp",
15+
"cstdio": "cpp",
16+
"cstdlib": "cpp",
17+
"cstring": "cpp",
18+
"ctime": "cpp",
19+
"cwchar": "cpp",
20+
"cwctype": "cpp",
21+
"any": "cpp",
22+
"atomic": "cpp",
23+
"bit": "cpp",
24+
"*.tcc": "cpp",
25+
"bitset": "cpp",
26+
"chrono": "cpp",
27+
"compare": "cpp",
28+
"complex": "cpp",
29+
"concepts": "cpp",
30+
"condition_variable": "cpp",
31+
"cstdint": "cpp",
32+
"deque": "cpp",
33+
"forward_list": "cpp",
34+
"list": "cpp",
35+
"map": "cpp",
36+
"set": "cpp",
37+
"string": "cpp",
38+
"unordered_map": "cpp",
39+
"unordered_set": "cpp",
40+
"vector": "cpp",
41+
"exception": "cpp",
42+
"algorithm": "cpp",
43+
"functional": "cpp",
44+
"iterator": "cpp",
45+
"memory": "cpp",
46+
"memory_resource": "cpp",
47+
"numeric": "cpp",
48+
"optional": "cpp",
49+
"random": "cpp",
50+
"ratio": "cpp",
51+
"string_view": "cpp",
52+
"system_error": "cpp",
53+
"tuple": "cpp",
54+
"type_traits": "cpp",
55+
"utility": "cpp",
56+
"fstream": "cpp",
57+
"initializer_list": "cpp",
58+
"iomanip": "cpp",
59+
"iosfwd": "cpp",
60+
"iostream": "cpp",
61+
"istream": "cpp",
62+
"limits": "cpp",
63+
"mutex": "cpp",
64+
"new": "cpp",
65+
"numbers": "cpp",
66+
"ostream": "cpp",
67+
"semaphore": "cpp",
68+
"sstream": "cpp",
69+
"stdexcept": "cpp",
70+
"stop_token": "cpp",
71+
"streambuf": "cpp",
72+
"thread": "cpp",
73+
"cinttypes": "cpp",
74+
"typeindex": "cpp",
75+
"typeinfo": "cpp",
76+
"variant": "cpp"
77+
},
78+
"C_Cpp.default.compilerPath": "/usr/bin/clang++-14",
879
}

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ find_package(Eigen3 3.3 REQUIRED NO_MODULE)
4646

4747
include(CTest)
4848

49-
add_subdirectory(src/third_party/googletest)
50-
add_subdirectory(src/openkf)
51-
add_subdirectory(src/examples)
49+
add_subdirectory(third_party/googletest)
50+
add_subdirectory(src)
51+
add_subdirectory(examples)
5252
add_subdirectory(tests)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)