From a2784e50c7a969466fef01f9ddc8bc8c642a0a62 Mon Sep 17 00:00:00 2001 From: neru Date: Tue, 12 May 2026 14:41:42 -0300 Subject: [PATCH] fix: declare linker language --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index c784762..54610bc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -44,6 +44,7 @@ if (SEALLIB_VFS) endif() add_library(seallib STATIC ${SEALLIB_SOURCES}) +set_target_properties(seallib PROPERTIES LINKER_LANGUAGE CXX) target_include_directories(seallib PUBLIC src/lib) target_compile_features(seallib PUBLIC cxx_std_20) set_target_properties(seallib PROPERTIES CXX_EXTENSIONS OFF)