Skip to content

Commit

Permalink
Hard code version to get going
Browse files Browse the repository at this point in the history
  • Loading branch information
fishrockz committed Dec 4, 2024
1 parent 38258d1 commit 1976cea
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions libcamera/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@ use std::{
use semver::{Comparator, Op, Version};

fn main() {
let libcamera_version = Version::new(
libcamera_sys::LIBCAMERA_VERSION_MAJOR as _,
libcamera_sys::LIBCAMERA_VERSION_MINOR as _,
libcamera_sys::LIBCAMERA_VERSION_PATCH as _,
);
let libcamera_version = Version::new(0, 3, 2);

let versioned_files = Path::new("versioned_files");
let mut candidates = std::fs::read_dir(versioned_files)
Expand Down

0 comments on commit 1976cea

Please sign in to comment.