2023-07-16 01:58:32 -04:00
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(lcpu-native
|
|
|
|
DESCRIPTION "Superproject for LCPU GMOD Native Module"
|
|
|
|
)
|
|
|
|
|
2023-07-18 02:08:00 -04:00
|
|
|
# Lucore (lily utilities core)
|
2023-07-16 05:46:49 -04:00
|
|
|
add_subdirectory(projects/lucore)
|
2023-07-16 02:15:55 -04:00
|
|
|
|
2023-07-18 02:08:00 -04:00
|
|
|
# RISC-V emulator library
|
2023-07-16 05:46:49 -04:00
|
|
|
add_subdirectory(projects/riscv)
|
2023-07-16 01:58:32 -04:00
|
|
|
|
2023-07-21 06:32:04 -04:00
|
|
|
add_subdirectory(projects/riscv_test_harness)
|
|
|
|
|
2023-07-18 02:08:00 -04:00
|
|
|
# Garry's Mod native bindings to RISC-V emulator
|
|
|
|
# Also lua device stuff
|
2023-07-18 02:05:39 -04:00
|
|
|
add_subdirectory(projects/lcpu)
|