Tagged Questions
The lazy-c++ tag has no wiki summary.
5
votes
1answer
127 views
Lazy C++ (LZZ) rule files for Visual C++ 2010
Has anyone made LZZ rule files for Visual C++ 2010 so you can add .lzz files to a project and compile without seeing the intermediate .cpp and .h files?
2
votes
3answers
470 views
How do I make build rules in cmake to preprocess lazy C++ .lzz files that generate .h and .cpp files?
What I'd like to do is write just Lazy C++ .lzz files and then have lzz run before a build to generate .cpp and .h files that will be built into the final application, sort of like how moc works with ...
2
votes
1answer
363 views
Does Lazy C++ (lzz) play nice with Doxygen?
Has anyone tried embedding Doxygen comments within Lazy C++ source files? Any problems? Where do the Doxygen comments go after generating the header/source files?
1
vote
2answers
4k views
How to tweak Eclipse's C++ Indexer?
I'm using Eclipse as my IDE for a C++ project, and I would love for it to tell me where a given symbol is defined and what the parameters are for a function.
However, there's a catch: I also use Lazy ...
1
vote
2answers
262 views
Make source with two targets
I use this tool called Lazy C++ which breaks a single C++ .lzz file into a .h and .cpp file. I want Makepp to expect both of these files to exist after my rule for building .lzz files, but I'm not ...
0
votes
2answers
70 views
LZZ syntax error for typedef enum _foo { a } foo;
Why does LZZ tell me that the line typedef enum _foo { a } foo; has a syntax error?
Test.lzz:1:19: Syntax error before '{'.
Test.lzz:1:1: Discarding 'typedef'.
Test.lzz:1:28: Syntax error before ';'.
...
0
votes
1answer
367 views
using lazy C++ for stub generation
Have you ever used lazy C++?
I am trying to create .CPP files out of .H files. In forum I read that it is possible with your tool but I tried touse it and I didn't succeed.
Can you help me?
I used ...