| name | build |
| description | Use when: configuring or building libatapp with CMake, changing shared/static builds, or adjusting build type options. |
Build (libatapp)
This repo uses CMake (>= 3.24) and requires C++17.
Workspace CMake Settings
When libatapp is built inside a larger workspace, read the active workspace .vscode/settings.json before running
cmake and reuse its generator, configure settings, build directory, and parallel-job settings. In the current
atsf4g-co checkout, that means the Ninja/Debug/unit-test-enabled build tree at build_jobs_cmake_tools unless the user
asks for a different configuration.
Typical build flow
- Configure:
cmake ..
- Build:
- Linux/macOS:
cmake --build .
- Windows (MSVC):
cmake --build . --config RelWithDebInfo
Run tests via CTest
Key CMake options
BUILD_SHARED_LIBS (NO/YES)
CMAKE_BUILD_TYPE (Debug/Release/RelWithDebInfo)