I set out to rewrite an OSS project in C piece by piece to Ada. First stop being to replace the build system with GPR. On doing so I stumbled upon a problem: it does not allow for multiple sources in the repository with the same name:
duplicate source file name "slp_debug.h"
The file exists in two different directories; one for implementation, and one for test (stub I reckon). This should be just fine since the preprocessor will deterministically choose the source relative the source including it, or according to the order of include directories. But GPR would appear not fond of that idea.
How to make GPR accept it?
I had a go with openslp-2.0.0 and managed to make one GPR that builds the library and another, which
with
s the first, to build the tests - no complaints about the duplicate file.Both project files are at the top level.
As common for projects like
openslp
, theconfigure
process generates a lengthyconfig.h
, at the top level, with a shedload of#define HAVE_FOO 1
’s.This is the 'common' project file - I think there may also be an executable in there (
slptool
), which might have to be a separate GPR since this one builds a library:and this is the 'test' one: