2021-02-19 22:52:28 +00:00
|
|
|
# akvirtualcamera, virtual camera for Mac and Windows.
|
|
|
|
# Copyright (C) 2021 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/
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.5)
|
|
|
|
|
2021-03-18 18:52:31 +00:00
|
|
|
if (NOT APPLE AND NOT WIN32)
|
|
|
|
message(FATAL_ERROR "This driver only works in Mac an Windows. For Linux check 'akvcam' instead.")
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
include(CheckCXXSourceCompiles)
|
|
|
|
|
2021-02-19 22:52:28 +00:00
|
|
|
set(COMMONS_APPNAME AkVirtualCamera)
|
|
|
|
string(TOLOWER ${COMMONS_APPNAME} COMMONS_TARGET)
|
|
|
|
|
|
|
|
set(VER_MAJ 9)
|
|
|
|
set(VER_MIN 0)
|
|
|
|
set(VER_PAT 0)
|
|
|
|
set(VERSION ${VER_MAJ}.${VER_MIN}.${VER_PAT})
|
2021-06-29 19:18:32 +00:00
|
|
|
set(DAILY_BUILD OFF CACHE BOOL "Mark this as a daily build")
|
2021-02-19 22:52:28 +00:00
|
|
|
|
2021-03-20 14:15:48 +00:00
|
|
|
add_definitions(-DCOMMONS_APPNAME="${COMMONS_APPNAME}"
|
|
|
|
-DCOMMONS_TARGET="${COMMONS_TARGET}"
|
|
|
|
-DCOMMONS_VER_MAJ="${VER_MAJ}"
|
|
|
|
-DCOMMONS_VERSION="${VERSION}"
|
|
|
|
-DPREFIX="${PREFIX}")
|
2021-02-19 22:52:28 +00:00
|
|
|
|
2021-03-18 18:52:31 +00:00
|
|
|
if (APPLE)
|
|
|
|
check_cxx_source_compiles("
|
|
|
|
#ifndef __x86_64__
|
|
|
|
#error Not x64
|
|
|
|
#endif
|
2021-02-19 22:52:28 +00:00
|
|
|
|
2021-03-18 18:52:31 +00:00
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}" IS_64BITS_TARGET)
|
|
|
|
elseif (WIN32)
|
2021-02-19 22:52:28 +00:00
|
|
|
check_cxx_source_compiles("
|
2021-02-21 19:07:21 +00:00
|
|
|
#ifndef _WIN64
|
2021-02-19 22:52:28 +00:00
|
|
|
#error Not x64
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
return 0;
|
2021-03-18 18:52:31 +00:00
|
|
|
}" IS_64BITS_TARGET)
|
2021-02-19 22:52:28 +00:00
|
|
|
|
|
|
|
add_definitions(-DUNICODE -D_UNICODE)
|
|
|
|
endif ()
|
|
|
|
|
2021-03-18 18:52:31 +00:00
|
|
|
if (IS_64BITS_TARGET)
|
|
|
|
set(TARGET_ARCH x64 CACHE INTERNAL "")
|
|
|
|
else ()
|
|
|
|
set(TARGET_ARCH x86 CACHE INTERNAL "")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -static -static-libgcc -static-libstdc++")
|
|
|
|
endif()
|
2021-06-29 19:18:32 +00:00
|
|
|
|
|
|
|
if (DAILY_BUILD)
|
|
|
|
add_definitions(-DDAILY_BUILD)
|
|
|
|
endif ()
|