eos0/CMakeLists.txt

14 lines
357 B
Text
Raw Normal View History

2024-02-23 03:31:25 +00:00
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)