From 5f6db9fed32cf1915687e1e00394e2aacd672b71 Mon Sep 17 00:00:00 2001 From: Adam Celarek <5292991+adam-ce@users.noreply.github.com> Date: Thu, 16 Nov 2023 12:20:58 +0100 Subject: [PATCH] fix copyrights in cmake files --- CMakeLists.txt | 18 ++++++++++++++++++ app/CMakeLists.txt | 19 +++++++++++++++++++ gl_engine/CMakeLists.txt | 19 +++++++++++++++++++ nucleus/CMakeLists.txt | 19 +++++++++++++++++++ plain_renderer/CMakeLists.txt | 18 ++++++++++++++++++ unittests/CMakeLists.txt | 18 ++++++++++++++++++ unittests_gl/CMakeLists.txt | 19 +++++++++++++++++++ 7 files changed, 130 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 990c92ee..65a82a16 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,21 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer LANGUAGES CXX) diff --git a/app/CMakeLists.txt b/app/CMakeLists.txt index 7a69e507..3d4cd51a 100644 --- a/app/CMakeLists.txt +++ b/app/CMakeLists.txt @@ -1,3 +1,22 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# Copyright (C) 2023 Gerald Kimmersdorfer +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer-app LANGUAGES CXX) diff --git a/gl_engine/CMakeLists.txt b/gl_engine/CMakeLists.txt index a161fb92..d902c980 100644 --- a/gl_engine/CMakeLists.txt +++ b/gl_engine/CMakeLists.txt @@ -1,3 +1,22 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# Copyright (C) 2023 Gerald Kimmersdorfer +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer-gl_engine LANGUAGES CXX) diff --git a/nucleus/CMakeLists.txt b/nucleus/CMakeLists.txt index 8025f1c9..8ef8b782 100644 --- a/nucleus/CMakeLists.txt +++ b/nucleus/CMakeLists.txt @@ -1,3 +1,22 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# Copyright (C) 2023 Gerald Kimmersdorfer +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer-nucleus LANGUAGES CXX) diff --git a/plain_renderer/CMakeLists.txt b/plain_renderer/CMakeLists.txt index 36ed5628..13526d11 100644 --- a/plain_renderer/CMakeLists.txt +++ b/plain_renderer/CMakeLists.txt @@ -1,3 +1,21 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer-plain_renderer LANGUAGES CXX) diff --git a/unittests/CMakeLists.txt b/unittests/CMakeLists.txt index 0d73dcf9..315727c0 100644 --- a/unittests/CMakeLists.txt +++ b/unittests/CMakeLists.txt @@ -1,3 +1,21 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer-unittests_nucleus LANGUAGES CXX) diff --git a/unittests_gl/CMakeLists.txt b/unittests_gl/CMakeLists.txt index 983182f4..4217e0bc 100644 --- a/unittests_gl/CMakeLists.txt +++ b/unittests_gl/CMakeLists.txt @@ -1,3 +1,22 @@ +############################################################################# +# Alpine Terrain Renderer +# Copyright (C) 2023 Adam Celarek +# Copyright (C) 2023 Gerald Kimmersdorfer +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +############################################################################# + cmake_minimum_required(VERSION 3.24) project(alpine-renderer-unittests_gl_engine LANGUAGES CXX)