eos0/CMakeLists.txt
2024-02-22 21:31:25 -06:00

13 lines
357 B
CMake

cmake_minimum_required(VERSION 3.25)
project(EOS0 CXX)
include(FetchContent)
FetchContent_Declare(
Corrosion
GIT_REPOSITORY https://github.com/corrosion-rs/corrosion.git
GIT_TAG v0.4 # Optionally specify a commit hash, version tag or branch here
)
FetchContent_MakeAvailable(Corrosion)
corrosion_import_crate(MANIFEST_PATH kernel/Cargo.toml)