From 0357b82201b239c5df327746ed214462d66afa11 Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Fri, 6 Dec 2024 21:59:32 -0800 Subject: [PATCH] Added core cmake file. --- src/core/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/core/CMakeLists.txt diff --git a/src/core/CMakeLists.txt b/src/core/CMakeLists.txt new file mode 100644 index 0000000..fd64bcf --- /dev/null +++ b/src/core/CMakeLists.txt @@ -0,0 +1,8 @@ +# LOCATION: projectroot/src/core + +#Example/template lines. +add_library(core_riscv SHARED + core_riscv.c +) + +target_include_directories(core_riscv PUBLIC ./inc)