summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/main.cpp17
-rw-r--r--lib/meson.build6
2 files changed, 0 insertions, 23 deletions
diff --git a/lib/main.cpp b/lib/main.cpp
deleted file mode 100644
index 0059e0c9..00000000
--- a/lib/main.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
-/* SPDX-License-Identifier: LGPL-2.1-or-later */
-/*
- * Copyright (C) 2018, Google Inc.
- *
- * main.cpp - libcamera main class
- */
-
-#include <iostream>
-#include <libcamera/libcamera.h>
-
-using std::cout;
-using std::endl;
-
-void libcamera::init_lib(void)
-{
- cout << "Lib Camera Init" << endl;
-}
diff --git a/lib/meson.build b/lib/meson.build
deleted file mode 100644
index fcd738cc..00000000
--- a/lib/meson.build
+++ /dev/null
@@ -1,6 +0,0 @@
-sources = ['main.cpp']
-
-libcamera = shared_library('camera',
- sources,
- install : true,
- include_directories : inc)