pipewire/src/tests/test-cpp.cpp
Barnabás Pőcze 934ab3036e treewide: use SPDX tags to specify copyright information
SPDX tags make the licensing information easy to understand and clear,
and they are machine parseable.

See https://spdx.dev for more information.
2023-02-16 10:54:48 +00:00

15 lines
361 B
C++

/* PipeWire */
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans <wim.taymans@gmail.com> */
/* SPDX-License-Identifier: MIT */
#include <pipewire/pipewire.h>
#include <pipewire/impl.h>
#include <pipewire/extensions/client-node.h>
#include <pipewire/extensions/protocol-native.h>
int main(int argc, char *argv[])
{
pw_init(&argc, &argv);
return 0;
}