summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/AndroidMK/expectedInstallAndroidMK.txt
Commit message (Collapse)AuthorAgeFilesLines
* LINK_OPTIONS: Add new family of propertiesMarc Chevrier2018-06-061-0/+8
| | | | | | | | | | | | | | This family enable to manage link flags Three new properties: * directory property: LINK_OPTIONS * target properties: LINK_OPTIONS and INTERFACE_LINK_OPTIONS Two new commands * add_link_options(): to populate directory property * target_link_options(): to populate target properties Fixes: #16543
* Android: Record use of C++ by static libs in exported Android.mk filesBrad King2016-10-071-0/+3
| | | | | | | | When a `PREBUILT_STATIC_LIBRARY` uses C++ in its sources then the `.a` file will have a link-time dependency on the C++ runtime libraries. Android NDK r14 will add a way to give this information to the NDK build system by adding a `LOCAL_HAS_CPP` setting to the `Android.mk` file. Add this for exported static libraries that use C++.
* Add support for creating prebuilt Android.mk filesBill Hoffman2016-09-131-0/+25
Add options to the `install()` and `export()` commands to export the targets we build into Android.mk files that reference them as prebuilt libraries with associated usage requirements (compile definitions, include directories, link libraries). This will allow CMake-built projects to be imported into projects using the Android NDK build system. Closes: #15562