From bd28cc476c2fc76978630e756e27c4bcd58f8e9c Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Wed, 17 Dec 2025 14:51:01 +0100 Subject: feat: Add file structure. Signed-off-by: Amlal El Mahrouss --- .gitignore | 3 +++ LICENSE_1_0.txt | 1 + doc/.keep | 0 example/.keep | 0 include/boost/tproc.hpp | 0 include/boost/tproc/detail/config.hpp | 0 include/boost/tproc/rope.hpp | 0 include/ocl/tproc.hpp | 12 ++++++++++++ include/ocl/tproc/detail/config.hpp | 0 include/ocl/tproc/rope.hpp | 0 test/.keep | 0 11 files changed, 16 insertions(+) create mode 120000 LICENSE_1_0.txt create mode 100644 doc/.keep create mode 100644 example/.keep delete mode 100644 include/boost/tproc.hpp delete mode 100644 include/boost/tproc/detail/config.hpp delete mode 100644 include/boost/tproc/rope.hpp create mode 100644 include/ocl/tproc.hpp create mode 100644 include/ocl/tproc/detail/config.hpp create mode 100644 include/ocl/tproc/rope.hpp create mode 100644 test/.keep diff --git a/.gitignore b/.gitignore index d4fb281..94acec4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ # Prerequisites *.d +# Emacs +*~ + # Compiled Object files *.slo *.lo diff --git a/LICENSE_1_0.txt b/LICENSE_1_0.txt new file mode 120000 index 0000000..7a694c9 --- /dev/null +++ b/LICENSE_1_0.txt @@ -0,0 +1 @@ +LICENSE \ No newline at end of file diff --git a/doc/.keep b/doc/.keep new file mode 100644 index 0000000..e69de29 diff --git a/example/.keep b/example/.keep new file mode 100644 index 0000000..e69de29 diff --git a/include/boost/tproc.hpp b/include/boost/tproc.hpp deleted file mode 100644 index e69de29..0000000 diff --git a/include/boost/tproc/detail/config.hpp b/include/boost/tproc/detail/config.hpp deleted file mode 100644 index e69de29..0000000 diff --git a/include/boost/tproc/rope.hpp b/include/boost/tproc/rope.hpp deleted file mode 100644 index e69de29..0000000 diff --git a/include/ocl/tproc.hpp b/include/ocl/tproc.hpp new file mode 100644 index 0000000..84a2851 --- /dev/null +++ b/include/ocl/tproc.hpp @@ -0,0 +1,12 @@ +// Copyright 2025, Amlal El Mahrouss (amlal@nekernel.org) +// Distributed under the Boost Software License, Version 1.0. (See accompanying +// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) +// Official repository: https://github.com/ocl-org/tproc + +#ifndef OCL_TPROC_HPP +#define OCL_TPROC_HPP + +#include +#include + +#endif // OCL_TPROC_HPP diff --git a/include/ocl/tproc/detail/config.hpp b/include/ocl/tproc/detail/config.hpp new file mode 100644 index 0000000..e69de29 diff --git a/include/ocl/tproc/rope.hpp b/include/ocl/tproc/rope.hpp new file mode 100644 index 0000000..e69de29 diff --git a/test/.keep b/test/.keep new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3