java - What is the Eclipse equivalent of Visual Studio's build configurations? -
i'm porting windows code android.
the visual studio project has various different build configurations different versions of application, (e.g. full version vs. demo).
what standard way achieve in eclipse? vast majority of code same different versions, there small differences, e.g. native code preprocessor definitions in android.mk
, slight differences in of java code, different output filenames.
should set separate projects, , use android.mk
files , eclipse's properties -> java build path point @ shared code?
eclipse cdt provides multiple configurations (try right click on project -> build configurations). works native projects, or c++ part of mixed projects, android projects native support.
Comments
Post a Comment