From 901a60206fb737fe8e8630bc5cf10c933ba3befd Mon Sep 17 00:00:00 2001 From: Max Wash Date: Thu, 24 Oct 2024 21:31:46 +0100 Subject: [PATCH] build: fix sys sources not being included in compilation --- cmake/Templates.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/Templates.cmake b/cmake/Templates.cmake index a5ee956..3ec0e10 100644 --- a/cmake/Templates.cmake +++ b/cmake/Templates.cmake @@ -11,7 +11,7 @@ function(add_bluelib_module) set(root_header include/blue/${module_name}.h) file(GLOB headers include/blue/${module_name}/*.h) - add_library(blue-${module_name}-obj OBJECT ${sources} ${root_header} ${headers}) + add_library(blue-${module_name}-obj OBJECT ${sources} ${sys_sources} ${root_header} ${headers}) set_target_properties(blue-${module_name}-obj PROPERTIES POSITION_INDEPENDENT_CODE ON)