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 Qt.
Is there any way to do this?
|
|
|
Here is an example of how to do this... First you need to find the
This sets
That generates the files in the current build directory, in case you do out-of-source builds. You will also need to specify that the outputs are generated files:
Put that all together and you get a CMakeLists.txt file something like this:
You would probably also want to add include path and other options to lzz eventually. If you placed all the Lazy C++ stuff into a module file and included that from the CMakeLists.txt it would be a bit cleaner. But this is the basic idea. |
|||||
|
|
For make:
fill in sourcecode.h, sourcecode.cpp, and lazy-cpp with the correct values. I don't know them. |
|||||||
|
|
I just wanted to share my CMakeLists.txt, which builds upon richq's script. The *.cpp and *.hpp files now properly depend on the *.lzz files. The *.lzz files are added to the project (which answers absense's question above) but kept separate from the generated files using the source_group command. The only remaining dealbreaker for me is the inability to compile the current file for *.lzz files.
|
|||
|
|
|
You must be joking! Where's the advantage over make syntax, if you need write so much? The original answer can be simplified to
with makepp syntax. Through makepp's automatic inference, if you compile something that includes sourcecode.h, or link sourcecode.o to a program or library, makepp will call lzz on the fly, as well as in the 2nd case the compiler to produce sourcecode.o. Let the tool do the work, not the makefile writer. KISS! |
|||
|