This project demonstrates how to integrate and use the AREG SDK for various purposes. The current build status is shown below:
- Introduction
- Integration Methods
- Advanced Features
- Building the AREG SDK Demo Project
- Demo Applications
- Contribution Guidelines
- License
- Issues and Feedback
The AREG SDK Demo Project provides a practical example and template for developers to create new projects using the AREG SDK or integrating it into existing projects.
This demo showcases three primary ways for seamless integration of AREG SDK into your project:
- Fetching source code using cmake: Directly fetch AREG SDK source files and build them alongside your project using CMake.
- Using prebuilt vcpkg packages: Integrate the AREG SDK as a package via CMake and vcpkg.
- Adding AREG SDK as a submodule: Add AREG SDK as a Git submodule to your project to integrate with
MSBuild
and/orcmake
.
Each method is described in detail below.
To integrate the AREG SDK by fetching its source code, modify your project’s CMakeLists.txt
to include the following script:
include(FetchContent)
FetchContent_Declare(
areg-sdk
GIT_REPOSITORY https://github.com/aregtech/areg-sdk.git
GIT_TAG "master"
)
FetchContent_MakeAvailable(areg-sdk)
# Set the root directory of the fetched AREG SDK
set(AREG_SDK_ROOT "${areg-sdk_SOURCE_DIR}")
include_directories(${AREG_SDK_ROOT}/framework)
Once fetched, you can use the AREG SDK libraries in your project via the areg::
namespace:
areg::areg
for the core framework libraryareg::aregextend
for extended objectsareg::areglogger
for the logging client API
Projects built by fetching the AREG SDK source code directly, compile it alongside project code.
Developers can also access the code generator (codegen
), multicast router (mcrouter
), and logging services (logger
).
Note
AREG SDK is prepared and tested to be a vcpkg
package. It is expected to be included in the upcoming version 2.0.0
Projects using CMake can integrate AREG SDK through the vcpkg
package manager. To install if follow these steps:
- Clone, build and install vcpkg by following the instructions in the official vcpkg repository.
- Install the AREG SDK package using the following commands:
Windows (64-bit):
vcpkg install areg:x64-windows
Linux (64-bit):
vcpkg install areg:x64-linux
After installing the package, add the vcpkg toolchain to your project displayed after running this command:
vcpkg integrate install
To include the AREG SDK package in your project, update your CMakeLists.txt
like this:
find_package(areg CONFIG REQUIRED)
include_directories(${AREG_FRAMEWORK})
To compile the sources, configure the project with CMake option -DCMAKE_TOOLCHAIN_FILE=<vcpkg-root>/scripts/buildsystems/vcpkg.cmake
, where <vcpkg-root>
should indicate the root folder of vcpkg
, and build it.
This method provides a simpler and more modular approach to integrating the AREG SDK.
Alternatively, you can add AREG SDK as a submodule to your project. This is particularly useful for managing dependencies in Microsoft Visual Studio solutions. To integrate AREG SDK as a submodule, add the following to your .gitmodules
file:
[submodule "thirdparty/areg-sdk"]
path = thirdparty/areg-sdk
url = https://github.com/aregtech/areg-sdk.git
Then run the following commands to update and/or fetch the submodule:
git submodule update --init --recursive
git submodule update --remote --recursive
Add the AREG SDK to your CMakeLists.txt
like this:
set(AREG_SDK_ROOT "${CMAKE_SOURCE_DIR}/thirdparty/areg-sdk")
include("${AREG_SDK_ROOT}/CMakeLists.txt")
This method is particularly useful for Microsoft Visual Studio builds by including desired project of AREG SDK in your solution file.
The AREG SDK can be integrated before or after the first call of project()
in CMake, depending on your needs.
This flexibility allows for custom configurations, such as specifying the compiler or enabling features like shared/static libraries, logging, and advanced objects.
To explore this flexibility, the demo project includes a compiler option INTEGRATE_AREG_BEFORE_PROJECT
. Set this option to TRUE
or FALSE
to experiment with both approaches.
For more advanced configuration, include areg.cmake in your CMakeLists.txt
file
and refer to the available options described in the user.cmake
file located in the conf/cmake
directory of the AREG SDK. Your can use this CMake script in your CMakeLists.txt: include("${AREG_CMAKE_CONFIG_DIR}/areg.cmake")
or script include("${AREG_CMAKE_EXPORTS}")
if use AREG SDK package.
To build the demo applications, ensure that you have:
- CMake (version 3.20 or higher)
- Java (version 17 or higher)
- C++ compiler (standard 17 or higher)
Clone the demo project:
git clone https://github.com/aregtech/areg-sdk-demo.git
Build using CMake (fetching AREG SDK sources):
cmake -B ./build
cmake --build ./build
Build using AREG SDK as a package:
cmake -B ./build -DCMAKE_TOOLCHAIN_FILE=<vcpkg-root>/scripts/buildsystems/vcpkg.cmake
cmake --build ./build
Build with Microsoft Visual Studio:
Open the solution file (areg-sdk-demo.sln
) and compile.
Important
Compilation with Visual Studio requires to clone this repository with AREG SDK submodule. Make sure that you have cloned the repository by calling git clone --recurse-submodules https://github.com/aregtech/areg-sdk-demo.git
.
The demo applications are located in the ./demo/
directory. They are simple examples taken from the AREG SDK examples. You can explore, modify, or contribute new examples to showcase additional features or use cases.
Contributions are welcome! You can:
- Add new example projects
- Provide configuration and build examples
- Create workflows for automated builds and tests
To contribute:
- Fork the repository.
- Implement your changes.
- Ensure compatibility with CMake, Microsoft Visual Studio, and multiple compilers (GCC, MSVC, Clang).
- Submit a Pull Request with a detailed description.
This project is licensed under the MIT License, offering flexibility for personal and commercial use.
For any change requests or bug reports, please submit an issue in the Issues section. We value your feedback and contributions!