# kernel-examples **Repository Path**: amcax-corp/kernel-examples ## Basic Information - **Project Name**: kernel-examples - **Description**: Here are the example projects which explain how to use AMCAX geometry kernel library for 3D modeling. - **Primary Language**: C++ - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 5 - **Forks**: 1 - **Created**: 2024-05-20 - **Last Updated**: 2025-11-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![en-us](https://img.shields.io/badge/en-us-yellow.svg)](./README.md) [![中文-简体](https://img.shields.io/badge/%E4%B8%AD%E6%96%87-%E7%AE%80%E4%BD%93-red.svg)](./README.zh_cn.md) ### Each example can be executed with the cmake command as follows: #### 一、 Set system environment variables 1. Click Environment variables 2. Click Create 3. Decompress the downloaded AMCAXKernel package and add its path to CMAKE_PREFIX_PATH
#### 二、 Open the terminal 1. Switch to the example folder for each module 2. mkdir build 3. cd build 4. cmake .. 5. cmake --build . --config release or cmake --build . --config debug 6. cd .\Release\ or cd .\Debug\ 7. .\test.exe ##### example1 of part is used as an example 1. Switch to the example1 folder
2. mkdir build
3. cd build
4. cmake ..
5. cmake --build . --config release
6. cd .\Release\
7. ./test.exe
Note:Some examples rely on Conan for managing third-party libraries. Please refer to [Conan official website](https://conan.io/) for detailed guidance.Additionally, our core library is compiled using MSVC 2022.​