Hello!
As pointed out by Clifford, I have been looking over src/libgcv/wfobj CMAKE
and file structure. After some research, i have found the following:
it uses a perplex lexer and not a re2c, there is some re2c logic in BRL-CAD
in other/stepcode/CMakeLists.txt but I don't understand it's purpose.
Secondly, the CMakeLists.txt in libgcv seems to be tied to the library,
in other words I believe it creates a static library (.so).
I was trying to do some sort of pattern matching between my Makefile
found below:
all: mycalc
>
> mycalc: scanner.h parser.c
> g++ -o mycalc main.cc
>
> parser.c: parser.yy
> lemon parser.yy
>
> scanner.h: scanner.re
> re2c scanner.re > scanner.h
>
> clean:
> rm -rf *.o parser.h parser.out parser.c scanner.h mycalc
>
> .PHONY: all clean
>
and the BRL-CAD CMakeLists.txt
How could I develop a CMakeLists file for my new parser in an incremental
manner, I'm having trouble understanding the whole file at once?
Do you think it's a good idea to set a meeting on IRC on a time frame
favorable for everyone? Any other ideas?
Thank you,
Andrei Ilinca
------------------------------------------------------------------------------
One dashboard for servers and applications across Physical-Virtual-Cloud
Widest out-of-the-box monitoring support with 50+ applications
Performance metrics, stats and reports that give you Actionable Insights
Deep dive visibility with transaction tracing using APM Insight.
http://ad.doubleclick.net/ddm/clk/290420510;117567292;y
_______________________________________________
BRL-CAD Developer mailing list
brlcad-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-devel