Hi there. I try to use console tools to build my project.
First of all I generate makefile
native-gen makefile -t app
But there are a number of folders with source files inside src/ directory in the project. Like that:
Project \ |-inc/ | \ | |-Model/ | | \-file2.h | |-file1.h |-src/ \ |-Model/ | \-file2.cpp |-file1.cpp
makefile doesn't see the files inside Model. And file2.cpp will not be compiled. How can I fix it?