summaryrefslogtreecommitdiff
path: root/test/init.cpp
blob: 4ade4e7690fc96e8870501cb680dba6af69dc971 (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::libcamera l = libcamera::libcamera();
	l.init_lib();

	return 0;
}