nuttx-apps/system/nxrecorder/Makefile
ligd ee7b0fc1dd nxplayer & nxrecorder: make main thread configurable, set to default
Change-Id: I730f2dab00da245a79fc61d679296e73efc2374f
Signed-off-by: ligd <liguiding1@xiaomi.com>
2020-11-03 21:45:59 -08:00

38 lines
1.3 KiB
Makefile

############################################################################
# apps/system/nxrecorder/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.
#
############################################################################
include $(APPDIR)/Make.defs
# NxRecorder Library
CSRCS = nxrecorder.c
ifneq ($(CONFIG_NXRECORDER_COMMAND_LINE),)
PROGNAME = nxrecorder
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = $(CONFIG_NXRECORDER_MAINTHREAD_STACKSIZE)
MODULE = $(CONFIG_NXRECORDER_COMMAND_LINE)
MAINSRC = nxrecorder_main.c
endif
include $(APPDIR)/Application.mk