Compiling a Git submodule with my project in Java -


i have github project in java normal file structure:

 src/  src/main.java  src/com/myproject/myclass.java  bin/ 

and have makefile it; adding git submodule own structure, , within project looks follows:

submodule/ submodule/src/ submodule/src/com/project/helperclass.java 

my question normal practice compile/have multiple projects different directory structures working together? should copy src/com/project/ directory directory structure?


Comments

Popular posts from this blog

php - Hide output during test execution -

java - Drawing vector images on PDF with PDFBox -

Qt4: how to send QString inside a struct via QSharedMemory -