My folders organization in project is following - http://imgur.com/a/nTGa8. In folders are other source code.
I have generated project on android using cmake_android.bat, then i look Makefile in build folder and see that rules are created only for 4 files. (SimulationApplicatin.cpp/.h, and SimulationStd.cpp/.h) , but i need to compile also other files that are located in SimulationLogic, UserInterface and Utility directory.
I see two solutions - copy all source files in one folder and then generate project. In this case, i lose directory organization. The second way create makefile rules manually.
It would be nice, if cmake automatically create makefile rules for another files that sit in subdirs.
Is it possible ?
Thanks.