open-story-teller/story-player/storyvm/CMakeLists.txt
anthony@rabine.fr b962d303c5
Some checks failed
Build-StoryEditor / build_linux (push) Has been cancelled
Build-StoryEditor / build_win32 (push) Has been cancelled
Deploy-Documentation / deploy (push) Has been cancelled
fix Flutter build
2025-06-23 15:18:05 +02:00

12 lines
204 B
CMake

cmake_minimum_required(VERSION 3.10)
project(storyvm LANGUAGES CXX C)
add_library(storyvm
SHARED
./storyvm.cpp
../../core/chip32/chip32_vm.c
)
include_directories(../../core/chip32 ../../shared)