dlr-gtlab / gt-logging

Basic C++14 logging library based on QsLog
0 stars 0 forks source link

Fix deployment of header files #37

Closed rainman110 closed 10 months ago

rainman110 commented 1 year ago

In GitLab by @rainman110 on Nov 25, 2022, 08:07

Currently, the deployment of the header files does not preserve the folder structure of include files but copies everything into the target include folder.

Current deployed header structure:

vector.h
stl_bindings.h
set.h
qt_bindings.h
memory.h
map.h
list.h
gt_logstream.h
gt_loglevel.h
gt_logging_exports.h
gt_logging.h
gt_logformatter.h
gt_logdisablelogforfile.h
gt_logdestfunctor.h
gt_logdestfile.h
gt_logdestconsole.h
gt_logdest.h
array.h

It needs to be:

gt_logging/
   vector.h
   stl_bindings.h
   set.h
   qt_bindings.h
   memory.h
   map.h
   list.h
   array.h
gt_logstream.h
gt_loglevel.h
gt_logging_exports.h
gt_logging.h
gt_logformatter.h
gt_logdisablelogforfile.h
gt_logdestfunctor.h
gt_logdestfile.h
gt_logdestconsole.h
gt_logdest.h
rainman110 commented 1 year ago

In GitLab by @mariusalexander on Nov 25, 2022, 08:47

created branch 37-fix-deployment-of-header-files to address this issue

rainman110 commented 1 year ago

In GitLab by @mariusalexander on Dec 19, 2022, 10:30

mentioned in commit 4efb913ac082f6bdd9e95dedb586ff347e3a68c8