WillAyd commented on issue #773:
URL: 
https://github.com/apache/arrow-nanoarrow/issues/773#issuecomment-2957233369

   Doing so I think would be pretty easy. We would just change our current 
flatcc dependency resolver:
   
   ```python
   flatcc_dep = dependency('flatcc')
   ```
   
   To use static linkage on Windows:
   
   ```python
   if host_machine.system() == 'windows'
       flatcc_dep = dependency(
           'flatcc',
           default_options: ['default_library=static'],
       )
   else
       flatcc_dep = dependency('flatcc')
   end
   ```
   
   I can try it out tomorrow and add Meson Windows CI (hopefully) in one pass


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to