You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
108 lines
3.4 KiB
CMake
108 lines
3.4 KiB
CMake
##################### tests/CMakeLists.txt (libopenshot) ######################
|
|
# @brief CMake build file for libopenshot (used to generate makefiles)
|
|
# @author Jonathan Thomas <jonathan@openshot.org>
|
|
#
|
|
# @section LICENSE
|
|
#
|
|
# Copyright (c) 2008-2019 OpenShot Studios, LLC
|
|
# <http://www.openshotstudios.com/>. This file is part of
|
|
# OpenShot Library (libopenshot), an open-source project dedicated to
|
|
# delivering high quality video editing and animation solutions to the
|
|
# world. For more information visit <http://www.openshot.org/>.
|
|
#
|
|
# OpenShot Library (libopenshot) is free software: you can redistribute it
|
|
# and/or modify it under the terms of the GNU Lesser General Public License
|
|
# as published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# OpenShot Library (libopenshot) 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 Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public License
|
|
# along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
|
|
################################################################################
|
|
|
|
# Test media path, used by unit tests for input data
|
|
file(TO_NATIVE_PATH "${PROJECT_SOURCE_DIR}/examples/" TEST_MEDIA_PATH)
|
|
add_definitions( -DTEST_MEDIA_PATH="${TEST_MEDIA_PATH}" )
|
|
|
|
################### UNITTEST++ #####################
|
|
# Find UnitTest++ libraries (used for unit testing)
|
|
find_package(UnitTest++)
|
|
|
|
if (NOT UnitTest++_FOUND)
|
|
set(TESTS_ENABLED OFF PARENT_SCOPE)
|
|
return()
|
|
endif()
|
|
|
|
# Include UnitTest++ headers (needed for compile)
|
|
include_directories(${UnitTest++_INCLUDE_DIRS})
|
|
|
|
set_package_properties(UnitTest++ PROPERTIES
|
|
TYPE RECOMMENDED
|
|
PURPOSE "Unit testing framework")
|
|
|
|
|
|
################# BLACKMAGIC DECKLINK ###################
|
|
if(ENABLE_BLACKMAGIC)
|
|
# Find BlackMagic DeckLinkAPI libraries
|
|
find_package(BlackMagic)
|
|
|
|
if(BLACKMAGIC_FOUND)
|
|
# Include Blackmagic headers (needed for compile)
|
|
include_directories(${BLACKMAGIC_INCLUDE_DIR})
|
|
endif()
|
|
endif()
|
|
|
|
############### SET TEST SOURCE FILES #################
|
|
set(OPENSHOT_TEST_FILES
|
|
Cache_Tests.cpp
|
|
Clip_Tests.cpp
|
|
Color_Tests.cpp
|
|
Coordinate_Tests.cpp
|
|
DummyReader_Tests.cpp
|
|
ReaderBase_Tests.cpp
|
|
ImageWriter_Tests.cpp
|
|
FFmpegReader_Tests.cpp
|
|
FFmpegWriter_Tests.cpp
|
|
Fraction_Tests.cpp
|
|
Frame_Tests.cpp
|
|
FrameMapper_Tests.cpp
|
|
KeyFrame_Tests.cpp
|
|
Point_Tests.cpp
|
|
Settings_Tests.cpp
|
|
Timeline_Tests.cpp)
|
|
|
|
########## SET OPENCV RELATED TEST FILES ###############
|
|
if(ENABLE_OPENCV)
|
|
list(APPEND OPENSHOT_TEST_FILES
|
|
CVTracker_Tests.cpp
|
|
CVStabilizer_Tests.cpp
|
|
# CVObjectDetection_Tests.cpp
|
|
)
|
|
endif()
|
|
|
|
################ TESTER EXECUTABLE #################
|
|
# Create unit test executable (openshot-test)
|
|
message (STATUS "Tests enabled, test executable will be built as tests/openshot-test")
|
|
|
|
add_executable(openshot-test
|
|
tests.cpp
|
|
${OPENSHOT_TEST_FILES}
|
|
)
|
|
|
|
# Link libraries to the new executable
|
|
target_link_libraries(openshot-test
|
|
openshot
|
|
${UnitTest++_LIBRARIES}
|
|
)
|
|
|
|
##### RUNNING TESTS (make os_test / make test) #####
|
|
# Hook up the 'make os_test' target to the 'openshot-test' executable,
|
|
# if we aren't defining it as the coverage target
|
|
if(NOT ENABLE_COVERAGE)
|
|
add_custom_target(os_test COMMAND openshot-test)
|
|
endif()
|