chore(ci): update CMake configuration for Linux and macOS builds

- Modified CI configuration to use the D-Bus portal for file dialogs on Linux for improved reliability.
- Updated CMake commands in both CI and release workflows to include the NFD_PORTAL option.
- Removed OpenSSL from vcpkg.json to streamline dependencies.

Benefits:
- Enhances build reliability across different platforms.
- Simplifies dependency management in the project.
This commit is contained in:
scawful
2025-10-13 10:29:47 -04:00
parent 58f3213c62
commit 6edfedff18
5 changed files with 29 additions and 13 deletions

View File

@@ -47,6 +47,10 @@ if(YAZE_BUILD_TESTS)
message(STATUS "Configuring Windows stack size for ${suite_name} to 16MB")
if(MSVC)
target_link_options(${suite_name} PRIVATE /STACK:16777216)
# Force whole-archive linking for protobuf to ensure all symbols are included
if(YAZE_WITH_GRPC)
target_link_options(${suite_name} PRIVATE /WHOLEARCHIVE:libprotobuf)
endif()
else()
target_link_options(${suite_name} PRIVATE -Wl,--stack,16777216)
endif()