Skip to content

Commit

Permalink
add copyright header (#22)
Browse files Browse the repository at this point in the history
# Description
add copyright header for the files copied from grape
  • Loading branch information
filippobrizzi authored Feb 13, 2024
1 parent 6ee0787 commit 6517d33
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2023 Filippo Brizzi
Copyright (c) 2023 EOLO Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Eolo provides functionalities that cover the following domains:
* Inter Process Comunication (IPC).
* Data serialization for IPC and storage.
* Multi-threading, e.g. thread pools and parallelism primitive.
* Containers, e.g. thread save container for sharing data across threads.
* Memory pool
* Containers, e.g. thread safe containers for sharing data across threads.
* Memory pool.
* Functionalities to run real-time code.

> NOTE: most of the above functionalities are still work in progress.
Expand All @@ -28,7 +28,7 @@ The best way to build eolo is to do it inside the docker container provided in t

### Compilation

Eolo uses CMake to build, the build infrastructure is heavily inspired (see copied) from [grape](https://github.com/cvilas/grape).
Eolo uses CMake to build, the build infrastructure is copied and adapted from [grape](https://github.com/cvilas/grape).

To build it:
```bash
Expand Down
1 change: 1 addition & 0 deletions cmake/01_version.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/02_build_config.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/03_compiler_config.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/04_code_formatter.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/05_modules.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# ==================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# ==================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/06_packager_config.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/build.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions cmake/create_module.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python3
#
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
#

Expand Down
1 change: 1 addition & 0 deletions external/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# =================================================================================================
# Copyright (C) 2018 GRAPE Contributors
# Copyright (C) 2023-2024 EOLO Contributors
# =================================================================================================

Expand Down
1 change: 1 addition & 0 deletions modules/cli/include/eolo/cli/program_options.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//=================================================================================================
// Copyright(C) 2018 GRAPE Contributors
// Copyright (C) 2023-2024 EOLO Contributors
//=================================================================================================

Expand Down
1 change: 1 addition & 0 deletions modules/cli/src/program_options.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
//=================================================================================================
// Copyright(C) 2018 GRAPE Contributors
// Copyright (C) 2023-2024 EOLO Contributors
//=================================================================================================
#include "eolo/cli/program_options.h"
Expand Down

0 comments on commit 6517d33

Please sign in to comment.