Define the starting points for the libcamera build using meson and ninja build components. An initial 'dummy' library class is created, and a test binary links against the shared library calling it's init_lib() function. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
13 lines
143 B
C++
13 lines
143 B
C++
#include <iostream>
|
|
|
|
namespace libcamera {
|
|
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
void init_lib(void)
|
|
{
|
|
cout << "Lib Camera Init" << endl;
|
|
}
|
|
|
|
};
|