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
Hi!
I want to have 2 configs for my project Debug and Release. The difference is in C++ flags. I tried to create separate makefile for release and call it, like: make --f=Makefile_Release
But it doesn't work as expected. Make still uses Makefile. If I remove file Makefile, it outputs this: make[1]: Nothing to be done for 'build'.
Can you please recommend me the way to split configurations?
The text was updated successfully, but these errors were encountered:
Hi!
I want to have 2 configs for my project Debug and Release. The difference is in C++ flags. I tried to create separate makefile for release and call it, like:
make --f=Makefile_Release
But it doesn't work as expected. Make still uses
Makefile
. If I remove fileMakefile
, it outputs this:make[1]: Nothing to be done for 'build'.
Can you please recommend me the way to split configurations?
The text was updated successfully, but these errors were encountered: