I've recently reinstalled Android Studio and am now using the latest Koala release. However, I seem to be running into issues with the CMake integration with Android Studio.
I have an add_subdirectory that includes files from a directory outside of my Android project. Ie.
add_library( mylib STATIC ../../../common/file.cpp ... )
In my root CMakeLists.txt:
add_subdirectory( lib )
This previously showed all the files in mylib as a separate module in the "Project" view within Android Studio, but this doesn't seem to be the case anymore, and I only see the files local to the project.
Can anyone point me in the direction for getting these files to show up again here?
Thanks.