modeco80
ddd3483620
currently the main program is just some stackful coro example stuff that i used just to test i'll add beast too in a sec but just. hang on
20 lines
255 B
CMake
20 lines
255 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(speech2)
|
|
|
|
|
|
xp_init()
|
|
|
|
|
|
enable_language(ASM)
|
|
|
|
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake")
|
|
|
|
include(Policies)
|
|
include(ProjectFuncs)
|
|
|
|
add_subdirectory(third_party/boost)
|
|
add_subdirectory(src)
|
|
|
|
|
|
|