aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/sound.h17
-rw-r--r--meson.build2
-rw-r--r--src/cli/main.c17
-rw-r--r--tools/gsr-cli/main.c (renamed from src/gsr_cli/main.c)17
4 files changed, 1 insertions, 52 deletions
diff --git a/include/sound.h b/include/sound.h
index eaa1236..31c7d94 100644
--- a/include/sound.h
+++ b/include/sound.h
@@ -1,20 +1,3 @@
-/*
- Copyright (C) 2020 dec05eba
-
- 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 <https://www.gnu.org/licenses/>.
-*/
-
#ifndef GSR_SOUND_H
#define GSR_SOUND_H
diff --git a/meson.build b/meson.build
index 7b0c14e..bebfa3d 100644
--- a/meson.build
+++ b/meson.build
@@ -132,7 +132,7 @@ endif
add_project_arguments('-DGSR_VERSION="' + meson.project_version() + '"', language: 'c')
executable('gsr-kms-server', 'kms/server/kms_server.c', dependencies : dependency('libdrm'), c_args : '-fstack-protector-all', install : true)
-executable('gsr-cli', ['src/gsr_cli/main.c', 'src/json.c', 'src/log.c'], install : true)
+executable('gsr-cli', ['tools/gsr-cli/main.c', 'src/json.c', 'src/log.c'], install : true)
executable('gpu-screen-recorder', src, dependencies : dep, install : true)
install_headers('plugin/plugin.h', install_dir : 'include/gsr')
diff --git a/src/cli/main.c b/src/cli/main.c
index 5ead4a4..d34e8cc 100644
--- a/src/cli/main.c
+++ b/src/cli/main.c
@@ -1,20 +1,3 @@
-/*
- Copyright (C) 2020 dec05eba
-
- 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 <https://www.gnu.org/licenses/>.
-*/
-
#include "../../include/cli/commands.h"
#include "../../include/cli/ipc.h"
#include "../../include/recorder/recorder.h"
diff --git a/src/gsr_cli/main.c b/tools/gsr-cli/main.c
index fb0fcbf..b536ceb 100644
--- a/src/gsr_cli/main.c
+++ b/tools/gsr-cli/main.c
@@ -1,20 +1,3 @@
-/*
- Copyright (C) 2020 dec05eba
-
- 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 <https://www.gnu.org/licenses/>.
-*/
-
#include "../../include/json.h"
#include "../../include/log.h"