Trying to understand how EDE works by using it to generate Makefiles for a project directory that contains several targets under a specific hierarchy. I'm not having any luck, and the info pages don't seem to answer my question.
My directory structure looks something like: (The asterix (*) marks files containing main() functions)
research/
flow/
flow.cpp
flow.hpp
program.cpp *
samples/
sample1.yuv
utils/
yuvreader.cpp
yuvreader.hpp
tests/
yuvreader_test.cpp *
I want to create EDE project(s) with one or more subprojects; or maybe I just want one or more targets...?
flow's program.cpp requires flow/ and utils/ sources, but yuvreader_test only requires utils/ sources.
I did ede-new in the root directory, and all subdirectories. I also did ede-new-target in the root directory, but when adding source files in subdirectories, it does not recognize the target I created.
I would appreciate it if someone could point me to some more complicated Project.ede files for something like I'm trying to do. You can guess that I have more subdirectories containing class code files, some of which have standalone programs that use that code; also I have more test code under tests/. Any example files/command workflows would be appreciated.