2020-06-02 15:37:45 +00:00
|
|
|
# akvirtualcamera, virtual camera for Mac and Windows.
|
2021-02-19 22:52:28 +00:00
|
|
|
# Copyright (C) 2021 Gonzalo Exequiel Pedone
|
2020-06-02 15:37:45 +00:00
|
|
|
#
|
|
|
|
# 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/
|
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
cmake_minimum_required(VERSION 3.14)
|
2020-06-29 16:17:34 +00:00
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
project(VCamIPC LANGUAGES CXX OBJCXX)
|
2020-06-29 16:17:34 +00:00
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
|
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
2020-06-29 16:17:34 +00:00
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
include(../cmio.cmake)
|
2020-06-29 16:17:34 +00:00
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
add_library(VCamIPC STATIC
|
|
|
|
src/ipcbridge.mm)
|
2020-06-29 16:17:34 +00:00
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
add_dependencies(VCamIPC VCamUtils)
|
|
|
|
target_compile_definitions(VCamIPC PRIVATE VCAMIPC_LIBRARY)
|
|
|
|
target_include_directories(VCamIPC
|
|
|
|
PRIVATE ..
|
|
|
|
PRIVATE ../..)
|
|
|
|
find_library(FOUNDATION_FRAMEWORK NAMES Foundation)
|
|
|
|
set(EXTRA_LIBS ${FOUNDATION_FRAMEWORK})
|
|
|
|
target_link_libraries(VCamIPC
|
|
|
|
VCamUtils
|
|
|
|
${EXTRA_LIBS})
|