09e3b6ad3a
Added sub-command for dumping all posssible information about the devices and configurations in XML format. Added sub-command for listening global events. Added sub-command for showing virtual camera version. Now the manager recognises negative numbers as arguments instead as an option. The manager can execute sub-commands as root when required. Fixed installer. The virtual camera is working fine in both Mac and Windows.
39 lines
1.7 KiB
Text
39 lines
1.7 KiB
Text
# akvirtualcamera, virtual camera for Mac and Windows.
|
|
# Copyright (C) 2020 Gonzalo Exequiel Pedone
|
|
#
|
|
# akvirtualcamera 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.
|
|
#
|
|
# akvirtualcamera 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 akvirtualcamera. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
# Web-Site: http://webcamoid.github.io/
|
|
|
|
isEmpty(CMIO_PLUGIN_NAME):
|
|
CMIO_PLUGIN_NAME = AkVirtualCamera
|
|
isEmpty(CMIO_PLUGIN_ASSISTANT_NAME):
|
|
CMIO_PLUGIN_ASSISTANT_NAME = AkVCamAssistant
|
|
isEmpty(CMIO_PLUGIN_DEVICE_PREFIX):
|
|
CMIO_PLUGIN_DEVICE_PREFIX = AkVCamVideoDevice
|
|
isEmpty(CMIO_PLUGIN_VENDOR):
|
|
CMIO_PLUGIN_VENDOR = "Webcamoid Project"
|
|
isEmpty(CMIO_PLUGIN_PRODUCT):
|
|
CMIO_PLUGIN_PRODUCT = $$CMIO_PLUGIN_NAME
|
|
isEmpty(CMIO_ASSISTANT_NAME):
|
|
CMIO_ASSISTANT_NAME = "org.webcamoid.cmio.AkVCam.Assistant"
|
|
|
|
DEFINES += \
|
|
CMIO_PLUGIN_NAME=\"\\\"$$CMIO_PLUGIN_NAME\\\"\" \
|
|
CMIO_PLUGIN_NAME_L=\"L\\\"$$CMIO_PLUGIN_NAME\\\"\" \
|
|
CMIO_PLUGIN_ASSISTANT_NAME=\"\\\"$$CMIO_PLUGIN_ASSISTANT_NAME\\\"\" \
|
|
CMIO_PLUGIN_DEVICE_PREFIX=\"\\\"$$CMIO_PLUGIN_DEVICE_PREFIX\\\"\" \
|
|
CMIO_PLUGIN_VENDOR=\"\\\"$$CMIO_PLUGIN_VENDOR\\\"\" \
|
|
CMIO_PLUGIN_PRODUCT=\"\\\"$$CMIO_PLUGIN_PRODUCT\\\"\" \
|
|
CMIO_ASSISTANT_NAME=\"\\\"$$CMIO_ASSISTANT_NAME\\\"\"
|