akvirtualcamera/cmio/VirtualCamera/VirtualCamera.pro

104 lines
2.9 KiB
Prolog
Raw Normal View History

# 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/
exists(commons.pri) {
include(commons.pri)
} else {
exists(../../commons.pri) {
include(../../commons.pri)
} else {
error("commons.pri file not found.")
}
}
include(../cmio.pri)
CONFIG -= qt link_prl
CONFIG += \
unversioned_libname \
unversioned_soname
DESTDIR = $${OUT_PWD}/$${BIN_DIR}
INCLUDEPATH += \
.. \
../..
LIBS = \
2020-06-29 16:17:34 +00:00
-L$${OUT_PWD}/../PlatformUtils/$${BIN_DIR} -lPlatformUtils \
-L$${OUT_PWD}/../../VCamUtils/$${BIN_DIR} -lVCamUtils \
-L$${OUT_PWD}/../VCamIPC/$${BIN_DIR} -lVCamIPC \
-framework CoreFoundation \
-framework CoreGraphics \
-framework CoreMedia \
-framework CoreMediaIO \
-framework CoreVideo \
-framework Foundation \
-framework IOKit \
-framework IOSurface
TARGET = $${CMIO_PLUGIN_NAME}
TEMPLATE = lib
HEADERS += \
src/plugin.h \
src/plugininterface.h \
src/device.h \
src/object.h \
src/stream.h \
src/objectinterface.h \
src/objectproperties.h \
src/clock.h \
src/queue.h
SOURCES += \
src/plugin.cpp \
src/plugininterface.cpp \
src/device.cpp \
src/object.cpp \
src/stream.cpp \
src/objectinterface.cpp \
src/objectproperties.cpp \
src/clock.cpp
2020-06-04 22:25:05 +00:00
QMAKE_SUBSTITUTES += Info.plist.in
OTHER_FILES = \
2020-06-04 22:25:05 +00:00
Info.plist.in
CONTENTSPATH = $${CMIO_PLUGIN_NAME}.plugin/Contents
MACBINPATH = $${CONTENTSPATH}/MacOS
RESOURCESPATH = $${CONTENTSPATH}/Resources
INSTALLS += \
targetLib \
infoPlist
2020-06-04 22:25:05 +00:00
targetLib.files = $$shell_path($${OUT_PWD}/../../$${MACBINPATH}/$${CMIO_PLUGIN_NAME})
targetLib.path = $${PREFIX}/$${MACBINPATH}
targetLib.CONFIG += no_check_exist
infoPlist.files = $$shell_path($${OUT_PWD}/Info.plist)
infoPlist.path = $${PREFIX}/$${CONTENTSPATH}
infoPlist.CONFIG += no_check_exist
QMAKE_POST_LINK = \
2020-06-04 22:25:05 +00:00
$$sprintf($$QMAKE_MKDIR_CMD, $$shell_path($${OUT_PWD}/../../$${MACBINPATH})) $${CMD_SEP} \
$(COPY) $$shell_path($${OUT_PWD}/Info.plist) $$shell_path($${OUT_PWD}/../../$${CONTENTSPATH}) $${CMD_SEP} \
$(COPY) $$shell_path($${OUT_PWD}/$${BIN_DIR}/lib$${CMIO_PLUGIN_NAME}.$${QMAKE_EXTENSION_SHLIB}) $$shell_path($${OUT_PWD}/../../$${MACBINPATH}/$${CMIO_PLUGIN_NAME}) $${CMD_SEP}