Moatasem-Elsayed / Logger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Logger

Logger is a lib which you can link with your source code to log in Excel sheet with the current time


how to build ?

build Library

cd LoggerLib
make
cp build/liblogger.a ../app

Build app

cd ../app
make
./build/app

Using in Custom App

Steps

1-generate liblogger.a and copy to source code

2-make folder called inc

3-copy headers to inc

  • Logger.hpp

  • IExcel.hpp

  • ExcelManger.hpp

4-compile

	g++ main.c  -o executable -I inc/ -pthread -llogger -L .

  • -L location of library < liblogger.a >
  • -I includes
  • -llogger name of lib

image


image


image

About


Languages

Language:C++ 82.7%Language:Makefile 17.3%