1
0
Fork 0
mirror of https://gitlab.com/niansa/cosched.git synced 2025-03-06 20:53:26 +01:00

Build as shared library

This commit is contained in:
niansa 2023-05-16 20:17:10 +02:00
parent 2f43b6d41b
commit 9d1047be54

View file

@ -5,7 +5,7 @@ project(cosched LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_library(cosched STATIC
add_library(cosched SHARED
scheduler.cpp include/scheduler.hpp
scheduled_thread.cpp include/scheduled_thread.hpp
basic-coro/SingleEvent.cpp