Files
libopenshot/tests/catch2v2.h.in
FeRD (Frank Dana) 5ae7112494 Catch2: Header templates for tests
Since Catch2 v3.0+ uses a vasty different organization for headers
and targets, we have two templates for what the unit test code
will include. One or the other is configure by CMake as the file
openshot_catch.h in the build directory, and all of the unit test
sources can include that instead.
2022-06-17 15:37:15 -04:00

20 lines
384 B
C

/**
* @file
* @brief Header (template) for tests built with Catch2 v2
* @author Jonathan Thomas <jonathan@openshot.org>
* @author FeRD (Frank Dana) <ferdnyc@gmail.com>
*
* @ref License
*/
// Copyright (c) 2008-2022 OpenShot Studios, LLC
//
// SPDX-License-Identifier: LGPL-3.0-or-later
#ifndef OPENSHOT_CATCH2_H
#define OPENSHOT_CATCH2_H
#include <catch2/catch.hpp>
#endif