AUI Framework
master
Cross-platform base for C++ UI apps
|
See also: Macros
AUI provides the unified way to cross-compile your application with AUI_BUILD_FOR CMake configure variable. When specified, CMake does the whole configure routine as if the project is compiled for the host system but it generates extra project directory for the target platform's development environment once the apps
target is invoked.
To build target platform's final application package, run build the apps
target.
That's the common way of crosscompiling with CMake. You need a toolchain file which describes your target platform.
In Android, a Gradle-driven project provides the toolchain for you. You don't even need to specify CMAKE_TOOLCHAIN_FILE, Gradle does it for you.
In iOS, there's no "official" toolchain so there are community-provided toolchains (like the one used in AUI).
AUI.Boot forwards CMAKE_TOOLCHAIN_FILE
across all the dependencies.
Assuming working directory is the build directory:
To configure the project use
To build the project use
AUI_BUILD_FOR value | Host platform | Target platform | Project environment | Project dir |
---|---|---|---|---|
android | Windows Linux macOS | Android | Gradle (can be opened with Android Studio) | ${CMAKE_BINARY_DIR}/app_project |
ios | macOS | iOS | Xcode | ${CMAKE_BINARY_DIR}/app_project |
-DVAR=VALUE
syntax) are not forwarded to the child CMake configure process. To bypass the limitation, use auib_mark_var_forwardable(VAR)
function, where VAR
is your variable name.Some projects may require their custom mobile project (Android Studio or Xcode), for example to specific mobile features (such as Google Play Games integration, Face ID, etc). In this case, you would have to create your own project and link AUI as a library.
app/src/cpp/CMakeLists.txt
, add_subdirectory
your C++ application or directly auib_import
the AUI framework (unrecommended because you will experience difficulties when compiling for other platforms).app.gradle
and AndroidManifest.xml
.GLSurfaceView
and pass rendering routines to AUI. Also, take care of handling user input. Also, you can inflate AuiView to your own Android layout.