Skip to content

Commit 2c3e2ef

Browse files
committed
chore: update linker flags, clean build artifacts, and refactor import paths
- Add -lstdc++exp to VSCode C++ linker flags for experimental C++ features - Remove generated cpptrace build artifacts (cmake configs and version header) - Update atom submodule to dirty state - Refactor example includes to use new modular paths: * components/manager.hpp → components/manager/manager.hpp * task/sequencer.hpp → task/core/sequencer.hpp * task/target.hpp → task/core/target.hpp - Apply black formatting to isolate
1 parent c70b22d commit 2c3e2ef

File tree

501 files changed

+50912
-6781
lines changed

Some content is hidden

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

501 files changed

+50912
-6781
lines changed

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"c-cpp-compile-run.cpp-linker-flags": "-lgtest -lpthread",
2+
"c-cpp-compile-run.cpp-linker-flags": "-lgtest -lpthread -lstdc++exp",
33
"c-cpp-compile-run.c-linker-flags": "-lgtest -lpthread"
44
}

build_test/cpptrace/cmake/cpptrace-config.cmake

Lines changed: 0 additions & 32 deletions
This file was deleted.

build_test/cpptrace/cpptrace-config-version.cmake

Lines changed: 0 additions & 65 deletions
This file was deleted.

build_test/cpptrace/include/cpptrace/version.hpp

Lines changed: 0 additions & 11 deletions
This file was deleted.

example/components/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <iostream>
2-
#include "components/manager.hpp"
2+
#include "components/manager/manager.hpp"
33

44
using namespace lithium;
55

example/task/main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22
#include <thread>
3-
#include "task/sequencer.hpp"
4-
#include "task/target.hpp"
3+
#include "task/core/sequencer.hpp"
4+
#include "task/core/target.hpp"
55

66
using namespace lithium::task;
77

0 commit comments

Comments
 (0)