From 050d6aa6b7fd6ee2de88abd1d8d10e9081d6775a Mon Sep 17 00:00:00 2001 From: jcarpent <jcarpent@laas.fr> Date: Mon, 28 Dec 2015 11:43:13 +0100 Subject: [PATCH] [C++][Cmake] Add missing copyright --- CMakeLists.txt | 14 +++++++++++++- src/details.cpp | 16 ++++++++++++++++ src/eigenpy.cpp | 16 ++++++++++++++++ src/exception.cpp | 16 ++++++++++++++++ unittest/geometry.cpp | 15 +++++++++++++++ 5 files changed, 76 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2b9d0b4..4264d84 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,17 @@ # -# Copyright 2014 CNRS +# Copyright (c) 2015 LAAS-CNRS +# +# This file is part of eigenpy. +# eigenpy is free software: you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public License +# as published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. +# eigenpy is distributed in the hope that it will be +# useful, but WITHOUT ANY WARRANTY; without even the implied warranty +# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Lesser General Public License for more details. You should +# have received a copy of the GNU Lesser General Public License along +# with eigenpy. If not, see <http://www.gnu.org/licenses/>. # CMAKE_MINIMUM_REQUIRED(VERSION 2.6) diff --git a/src/details.cpp b/src/details.cpp index d77c6c0..c77a0be 100644 --- a/src/details.cpp +++ b/src/details.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2015 LAAS-CNRS + * + * This file is part of eigenpy. + * eigenpy is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 3 of + * the License, or (at your option) any later version. + * eigenpy is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. You should + * have received a copy of the GNU Lesser General Public License along + * with eigenpy. If not, see <http://www.gnu.org/licenses/>. + */ + #include "eigenpy/details.hpp" namespace eigenpy diff --git a/src/eigenpy.cpp b/src/eigenpy.cpp index 088c2b3..d0b685e 100644 --- a/src/eigenpy.cpp +++ b/src/eigenpy.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2015 LAAS-CNRS + * + * This file is part of eigenpy. + * eigenpy is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 3 of + * the License, or (at your option) any later version. + * eigenpy is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. You should + * have received a copy of the GNU Lesser General Public License along + * with eigenpy. If not, see <http://www.gnu.org/licenses/>. + */ + #include "eigenpy/eigenpy.hpp" namespace eigenpy diff --git a/src/exception.cpp b/src/exception.cpp index 3c20f3a..b8ac24c 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -1,3 +1,19 @@ +/* + * Copyright (c) 2015 LAAS-CNRS + * + * This file is part of eigenpy. + * eigenpy is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 3 of + * the License, or (at your option) any later version. + * eigenpy is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. You should + * have received a copy of the GNU Lesser General Public License along + * with eigenpy. If not, see <http://www.gnu.org/licenses/>. + */ + #include <eigenpy/exception.hpp> diff --git a/unittest/geometry.cpp b/unittest/geometry.cpp index 0490eb5..8782d1b 100644 --- a/unittest/geometry.cpp +++ b/unittest/geometry.cpp @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2015 LAAS-CNRS + * + * This file is part of eigenpy. + * eigenpy is free software: you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public License + * as published by the Free Software Foundation, either version 3 of + * the License, or (at your option) any later version. + * eigenpy is distributed in the hope that it will be + * useful, but WITHOUT ANY WARRANTY; without even the implied warranty + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. You should + * have received a copy of the GNU Lesser General Public License along + * with eigenpy. If not, see <http://www.gnu.org/licenses/>. + */ #include "eigenpy/eigenpy.hpp" #include "eigenpy/geometry.hpp" -- GitLab