Cpp plugin makes output folders in build/binaries start with a lowercase letter even though my library name starts with an upper case letter

I have a project that produces a library and an executable.

apply plugin: ‘cpp’

libraries {

ICFLVLib {}

}

executables {

ICFLVUnwrapper {}

}

The output is placed in folders like this: build/binaries/iCFLVLibStaticLibrary build/binaries/iCFLVUnwrapperExecutable

Note the lowercase ‘i’. The binary files themselves are properly named with the uppercase I, but this still seems wrong.