Merge pull request #635 from Westlanderz/bugfix/Cross-compiling-set-native

Fix compiling native when main project is cross-compiling
This commit is contained in:
Mark VanderVoord
2022-10-14 10:35:13 -04:00
committed by GitHub

View File

@ -8,4 +8,6 @@ unity_dir = include_directories('.')
unity_lib = static_library(meson.project_name(),
'unity.c',
include_directories: unity_dir)
include_directories: unity_dir,
native: true
)