boost abseil-cpp protobuf或者直接使用apt等包管理工具安装对应平台的预编译包cmake -Bbuild -DCMAKE_INSTALL_PREFIX=/your/install/path -DCMAKE_PREFIX_PATH=/your/install/path -DBUILD_TESTING=OFFcmake --build build -j$(nproc)cmake --install build# in CMakeList.txt
find_package(babylon REQUIRED)
babylon::babylon
# in CMakeList.txt
target_link_libraries(your_target babylon::babylon)
cmake -Bbuild -DCMAKE_PREFIX_PATH=/your/install/pathcmake --build build -j$(nproc)cmake --install build