summaryrefslogtreecommitdiff
path: root/test/init.cpp
blob: 97948b9c89cc53eddddb1dea171c72085a72afcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2018, Google Inc.
 *
 * init.cpp - libcamera initialization test
 */

#include <libcamera/libcamera.h>

int main(void)
{
	libcamera l = libcamera();
	l.init_lib();

	return 0;
}