eruption-sdk 0.0.4

Provides an interface to the Eruption Realtime RGB LED Driver for Linux
Documentation
/*
    This file is part of Eruption.

    Eruption is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Eruption is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Eruption.  If not, see <http://www.gnu.org/licenses/>.

    Copyright (c) 2019-2022, The Eruption Development Team
*/

use std::{env, error::Error};

fn main() -> Result<(), Box<dyn Error + 'static>> {
    let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();

    prost_build::compile_protos(
        &[&format!("{}/support/protobuf/sdk-support.proto", crate_dir)],
        &[&format!("{}/support/protobuf/", crate_dir)],
    )?;

    Ok(())
}