Added core cmake file.

This commit is contained in:
jakeg00dwin 2024-12-06 21:59:32 -08:00
parent b93acdb9a2
commit 0357b82201
1 changed files with 8 additions and 0 deletions

8
src/core/CMakeLists.txt Normal file
View File

@ -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)