diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | conanfile.py | 2 | ||||
| m--------- | lib/cute | 0 | ||||
| -rw-r--r-- | source/.clang-format (renamed from .clang-format) | 0 | ||||
| -rw-r--r-- | source/.gitignore | 1 | ||||
| -rw-r--r-- | source/CMakeLists.txt (renamed from CMakeLists.txt) | 0 | ||||
| -rw-r--r-- | source/include/wanda/command.hpp (renamed from include/wanda/command.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/commander.hpp (renamed from include/wanda/commander.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/control_connection.hpp (renamed from include/wanda/control_connection.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/control_interface.hpp (renamed from include/wanda/control_interface.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/deferred_failure.hpp (renamed from include/wanda/deferred_failure.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/environment.hpp (renamed from include/wanda/environment.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/expected.hpp (renamed from include/wanda/expected.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/filesystem.hpp (renamed from include/wanda/filesystem.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/keyed.hpp (renamed from include/wanda/keyed.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/logging.hpp (renamed from include/wanda/logging.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/magic.hpp (renamed from include/wanda/magic.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/message.hpp (renamed from include/wanda/message.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/optional.hpp (renamed from include/wanda/optional.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/setting.hpp (renamed from include/wanda/setting.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/type_wrapper.hpp (renamed from include/wanda/type_wrapper.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/wallpaper.hpp (renamed from include/wanda/wallpaper.hpp) | 0 | ||||
| -rw-r--r-- | source/include/wanda/xdg.hpp (renamed from include/wanda/xdg.hpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/command.cpp (renamed from src/wanda/command.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/commander.cpp (renamed from src/wanda/commander.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/control_connection.cpp (renamed from src/wanda/control_connection.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/control_interface.cpp (renamed from src/wanda/control_interface.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/environment.cpp (renamed from src/wanda/environment.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/filesystem.cpp (renamed from src/wanda/filesystem.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/logging.cpp (renamed from src/wanda/logging.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/message.cpp (renamed from src/wanda/message.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/setting.cpp (renamed from src/wanda/setting.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/wallpaper.cpp (renamed from src/wanda/wallpaper.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/wandac.cpp (renamed from src/wanda/wandac.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/wandad.cpp (renamed from src/wanda/wandad.cpp) | 0 | ||||
| -rw-r--r-- | source/src/wanda/xdg.cpp (renamed from src/wanda/xdg.cpp) | 0 | ||||
| -rw-r--r-- | source/tests/wanda/driver.cpp (renamed from tests/wanda/driver.cpp) | 0 | ||||
| -rw-r--r-- | source/tests/wanda/test_suite_xdg.cpp (renamed from tests/wanda/test_suite_xdg.cpp) | 0 |
38 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,3 @@ /.mypy_cache /.virtualenv /build -/CMakeUserPresets.json
\ No newline at end of file diff --git a/conanfile.py b/conanfile.py index 4656617..f152f2a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -48,7 +48,7 @@ class Wanda(ConanFile): toolchain.generate() def layout(self): - cmake_layout(self, src_folder=".") + cmake_layout(self, src_folder="source") def package(self): cmake = CMake(self) diff --git a/lib/cute b/lib/cute deleted file mode 160000 -Subproject 292185e63d01097a9d063dc6cfd24aee2c915da diff --git a/.clang-format b/source/.clang-format index b99e359..b99e359 100644 --- a/.clang-format +++ b/source/.clang-format diff --git a/source/.gitignore b/source/.gitignore new file mode 100644 index 0000000..0c2999d --- /dev/null +++ b/source/.gitignore @@ -0,0 +1 @@ +/CMakeUserPresets.json diff --git a/CMakeLists.txt b/source/CMakeLists.txt index 6d1ec20..6d1ec20 100644 --- a/CMakeLists.txt +++ b/source/CMakeLists.txt diff --git a/include/wanda/command.hpp b/source/include/wanda/command.hpp index 5ea1a08..5ea1a08 100644 --- a/include/wanda/command.hpp +++ b/source/include/wanda/command.hpp diff --git a/include/wanda/commander.hpp b/source/include/wanda/commander.hpp index 1c76c6d..1c76c6d 100644 --- a/include/wanda/commander.hpp +++ b/source/include/wanda/commander.hpp diff --git a/include/wanda/control_connection.hpp b/source/include/wanda/control_connection.hpp index b692d37..b692d37 100644 --- a/include/wanda/control_connection.hpp +++ b/source/include/wanda/control_connection.hpp diff --git a/include/wanda/control_interface.hpp b/source/include/wanda/control_interface.hpp index 73ef2cf..73ef2cf 100644 --- a/include/wanda/control_interface.hpp +++ b/source/include/wanda/control_interface.hpp diff --git a/include/wanda/deferred_failure.hpp b/source/include/wanda/deferred_failure.hpp index 5db26f6..5db26f6 100644 --- a/include/wanda/deferred_failure.hpp +++ b/source/include/wanda/deferred_failure.hpp diff --git a/include/wanda/environment.hpp b/source/include/wanda/environment.hpp index 5a702a8..5a702a8 100644 --- a/include/wanda/environment.hpp +++ b/source/include/wanda/environment.hpp diff --git a/include/wanda/expected.hpp b/source/include/wanda/expected.hpp index fff0d81..fff0d81 100644 --- a/include/wanda/expected.hpp +++ b/source/include/wanda/expected.hpp diff --git a/include/wanda/filesystem.hpp b/source/include/wanda/filesystem.hpp index 1975bc5..1975bc5 100644 --- a/include/wanda/filesystem.hpp +++ b/source/include/wanda/filesystem.hpp diff --git a/include/wanda/keyed.hpp b/source/include/wanda/keyed.hpp index 58f17ad..58f17ad 100644 --- a/include/wanda/keyed.hpp +++ b/source/include/wanda/keyed.hpp diff --git a/include/wanda/logging.hpp b/source/include/wanda/logging.hpp index b3c1665..b3c1665 100644 --- a/include/wanda/logging.hpp +++ b/source/include/wanda/logging.hpp diff --git a/include/wanda/magic.hpp b/source/include/wanda/magic.hpp index fcb153e..fcb153e 100644 --- a/include/wanda/magic.hpp +++ b/source/include/wanda/magic.hpp diff --git a/include/wanda/message.hpp b/source/include/wanda/message.hpp index 866408f..866408f 100644 --- a/include/wanda/message.hpp +++ b/source/include/wanda/message.hpp diff --git a/include/wanda/optional.hpp b/source/include/wanda/optional.hpp index da3774c..da3774c 100644 --- a/include/wanda/optional.hpp +++ b/source/include/wanda/optional.hpp diff --git a/include/wanda/setting.hpp b/source/include/wanda/setting.hpp index 1721651..1721651 100644 --- a/include/wanda/setting.hpp +++ b/source/include/wanda/setting.hpp diff --git a/include/wanda/type_wrapper.hpp b/source/include/wanda/type_wrapper.hpp index 12684cb..12684cb 100644 --- a/include/wanda/type_wrapper.hpp +++ b/source/include/wanda/type_wrapper.hpp diff --git a/include/wanda/wallpaper.hpp b/source/include/wanda/wallpaper.hpp index 0cad473..0cad473 100644 --- a/include/wanda/wallpaper.hpp +++ b/source/include/wanda/wallpaper.hpp diff --git a/include/wanda/xdg.hpp b/source/include/wanda/xdg.hpp index bc138fa..bc138fa 100644 --- a/include/wanda/xdg.hpp +++ b/source/include/wanda/xdg.hpp diff --git a/src/wanda/command.cpp b/source/src/wanda/command.cpp index 960c52b..960c52b 100644 --- a/src/wanda/command.cpp +++ b/source/src/wanda/command.cpp diff --git a/src/wanda/commander.cpp b/source/src/wanda/commander.cpp index 85fc68a..85fc68a 100644 --- a/src/wanda/commander.cpp +++ b/source/src/wanda/commander.cpp diff --git a/src/wanda/control_connection.cpp b/source/src/wanda/control_connection.cpp index 40e29f3..40e29f3 100644 --- a/src/wanda/control_connection.cpp +++ b/source/src/wanda/control_connection.cpp diff --git a/src/wanda/control_interface.cpp b/source/src/wanda/control_interface.cpp index c008920..c008920 100644 --- a/src/wanda/control_interface.cpp +++ b/source/src/wanda/control_interface.cpp diff --git a/src/wanda/environment.cpp b/source/src/wanda/environment.cpp index 533a5f5..533a5f5 100644 --- a/src/wanda/environment.cpp +++ b/source/src/wanda/environment.cpp diff --git a/src/wanda/filesystem.cpp b/source/src/wanda/filesystem.cpp index 4da30b1..4da30b1 100644 --- a/src/wanda/filesystem.cpp +++ b/source/src/wanda/filesystem.cpp diff --git a/src/wanda/logging.cpp b/source/src/wanda/logging.cpp index 8c61953..8c61953 100644 --- a/src/wanda/logging.cpp +++ b/source/src/wanda/logging.cpp diff --git a/src/wanda/message.cpp b/source/src/wanda/message.cpp index 978b7c4..978b7c4 100644 --- a/src/wanda/message.cpp +++ b/source/src/wanda/message.cpp diff --git a/src/wanda/setting.cpp b/source/src/wanda/setting.cpp index f0cf7a7..f0cf7a7 100644 --- a/src/wanda/setting.cpp +++ b/source/src/wanda/setting.cpp diff --git a/src/wanda/wallpaper.cpp b/source/src/wanda/wallpaper.cpp index 7d4c7d5..7d4c7d5 100644 --- a/src/wanda/wallpaper.cpp +++ b/source/src/wanda/wallpaper.cpp diff --git a/src/wanda/wandac.cpp b/source/src/wanda/wandac.cpp index 1873ef4..1873ef4 100644 --- a/src/wanda/wandac.cpp +++ b/source/src/wanda/wandac.cpp diff --git a/src/wanda/wandad.cpp b/source/src/wanda/wandad.cpp index 8579a83..8579a83 100644 --- a/src/wanda/wandad.cpp +++ b/source/src/wanda/wandad.cpp diff --git a/src/wanda/xdg.cpp b/source/src/wanda/xdg.cpp index d49e53f..d49e53f 100644 --- a/src/wanda/xdg.cpp +++ b/source/src/wanda/xdg.cpp diff --git a/tests/wanda/driver.cpp b/source/tests/wanda/driver.cpp index e0dd7c8..e0dd7c8 100644 --- a/tests/wanda/driver.cpp +++ b/source/tests/wanda/driver.cpp diff --git a/tests/wanda/test_suite_xdg.cpp b/source/tests/wanda/test_suite_xdg.cpp index 70597f7..70597f7 100644 --- a/tests/wanda/test_suite_xdg.cpp +++ b/source/tests/wanda/test_suite_xdg.cpp |
