← Back to team overview

coapp-developers team mailing list archive

How to placed files in subdirectory of include path

 

Hi all,

I am new to the CoApp project, and try to make a c++ template lib available
as nuget package with autopkg.

The include files are structured in subdirectories, but when I place them
in the .autopkg file,
they appear only in a flat structure include directory. Here is the files
part of the .autopkg file

  files {
    include : { "inc\*.h", "inc\armadillo_bits\*.hpp" };

    [x86, v110, debug] {
      lib: "bin\Debug\*.*";
    }

    [x86, v110, release] {
      lib: "bin\Release\*.*";
    }

All files form inc\*.h and inc\armadillo_bits\*.hpp goes into the flat
directory include.
But I would like to see them in include\armadillo_bits.

best regards
  nhok

Follow ups