cppbuild 0.1.1

library for cppbuild a project aimed at creating a cargo like tool for cpp that integrates other package managers through the use of pkg-config
Documentation

#include<iostream>
#include<opencv2/opencv.hpp>
#include<testinc.h>
using namespace std;
using namespace cv;

int main(){
    Mat frame;
    VideoCapture cap(0);
    for(;;){
   	cap >> frame;
        imshow("frame", frame);
	waitKey(20);
    }
    cout << "the code was updated" << endl;
    return 0;
}
///test
int 
second_function(){

}