CAN programming interface environment
Version 3.10
Loading...
Searching...
No Matches
Getting Started

A CMake project file for the test cases and the CANpie FD Server application is located in the project's root directory.

To build all binaries, run the following steps:

Windows

mkdir build
cd build
cmake -G "Visual Studio 16 2019" -A x64 ..
cmake --build . --config Release

Upon successful compilation, all executables are located in the bin directory of your local CANpie FD repository.

macOS and Linux

mkdir build
cd build
cmake ..
cmake --build . --config Release

Installation

The default installation path for macOS and Linux is the /usr/local/bin directory.

sudo cmake --build . --target install