From 1840668e2991b99edd7b36b0054f981ae36af36c Mon Sep 17 00:00:00 2001 From: shizhenghui Date: Tue, 2 Jul 2024 17:40:22 +0800 Subject: [PATCH] apps/videoutils: add Makefile Signed-off-by: shizhenghui --- videoutils/.gitignore | 1 + videoutils/CMakeLists.txt | 23 +++++++++++++++++++++++ videoutils/Make.defs | 21 +++++++++++++++++++++ videoutils/Makefile | 23 +++++++++++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 videoutils/.gitignore create mode 100644 videoutils/CMakeLists.txt create mode 100644 videoutils/Make.defs create mode 100644 videoutils/Makefile diff --git a/videoutils/.gitignore b/videoutils/.gitignore new file mode 100644 index 000000000..9e1d2593e --- /dev/null +++ b/videoutils/.gitignore @@ -0,0 +1 @@ +/Kconfig diff --git a/videoutils/CMakeLists.txt b/videoutils/CMakeLists.txt new file mode 100644 index 000000000..440677ad9 --- /dev/null +++ b/videoutils/CMakeLists.txt @@ -0,0 +1,23 @@ +# ############################################################################## +# apps/videoutils/CMakeLists.txt +# +# Licensed to the Apache Software Foundation (ASF) under one or more contributor +# license agreements. See the NOTICE file distributed with this work for +# additional information regarding copyright ownership. The ASF licenses this +# file to you under the Apache License, Version 2.0 (the "License"); you may not +# use this file except in compliance with the License. You may obtain a copy of +# the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations under +# the License. +# +# ############################################################################## + +nuttx_add_subdirectory() + +nuttx_generate_kconfig(MENUDESC "Video Utility libraries") diff --git a/videoutils/Make.defs b/videoutils/Make.defs new file mode 100644 index 000000000..9b1c12ad3 --- /dev/null +++ b/videoutils/Make.defs @@ -0,0 +1,21 @@ +############################################################################ +# apps/videoutils/Make.defs +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +include $(wildcard $(APPDIR)/videoutils/*/Make.defs) diff --git a/videoutils/Makefile b/videoutils/Makefile new file mode 100644 index 000000000..bedc2d2bd --- /dev/null +++ b/videoutils/Makefile @@ -0,0 +1,23 @@ +############################################################################ +# apps/videoutils/Makefile +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. The +# ASF licenses this file to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance with the +# License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT +# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the +# License for the specific language governing permissions and limitations +# under the License. +# +############################################################################ + +MENUDESC = "Video Utility libraries" + +include $(APPDIR)/Directory.mk