We're now first building a standalone bytecode compiler `apflc` that will compile `globals.apfl` into bytecode and write it out as a C source file. When initializing a new context, that embedded bytecode will then get evaluated and the global scope will be populated from the dictionary returned by that bytecode.
4 lines
116 B
CMake
4 lines
116 B
CMake
cmake_minimum_required(VERSION 3.12)
|
|
project(apfl VERSION 0.0.1 LANGUAGES C)
|
|
enable_testing()
|
|
add_subdirectory(src)
|