使用命令行构建NativeActivity
项目时,我可以将其他参数传递给ndk-build
,例如-j 4
或-B
。
有没有办法可以设置它,以便在我通过eclipse运行构建时传递相同的参数?
答案 0 :(得分:1)
是的,你可以做到以上几点。首先,您需要为eclipse安装CDT插件。如果您使用来自Android-adt-bundle
的eclipse,那么eclipse预先安装了CDT插件。
其次,在首选项中,您需要设置ndk路径,如下所示:
Eclipse -> Window -> Preferences -> Android -> NDK -> set path to the NDK
第三,
Right click on an Android project and select Android Tools -> Add native support.
四,
Right click project -> properties -> C/C++ Build:
In the build command, you will be having ndk-build, now append that command wit whatever parameter you want to pass. Then press apply and press ok.