You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Essentially, I've been having an issue with meson not setting an option to the configuration in the build directory, I compiled the project from the build directory but when I ran meson configure in the build directory it didn't change the option. I solved the issue by deleting the build directory and running meson setup again. Is this potentially a bug with meson or did I do something incorrectly?
It's also worth mentioning that when I ran meson configure in the source directory it did show me the correct configuration. project('test-project', 'cpp', default_options: ['cpp_std=c++20', 'build.cpp_std=c++20'])
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Essentially, I've been having an issue with meson not setting an option to the configuration in the build directory, I compiled the project from the build directory but when I ran
meson configure
in the build directory it didn't change the option. I solved the issue by deleting the build directory and runningmeson setup
again. Is this potentially a bug with meson or did I do something incorrectly?It's also worth mentioning that when I ran
meson configure
in the source directory it did show me the correct configuration.project('test-project', 'cpp', default_options: ['cpp_std=c++20', 'build.cpp_std=c++20'])
Beta Was this translation helpful? Give feedback.
All reactions