Suppress project warning PRJ0018

  • Thread starter Thread starter Chris Stankevitz
  • Start date Start date
C

Chris Stankevitz

My .vcproj references an environment variable that no longer exists:

Creating library...

Project : warning PRJ0018 : The following environment variables were not
found: $(WXWIN)

How do I suppress this warning? Note this is a "PRJ" warning not a "C"
(compiler) warning. FYI, my project must include these missing environment
variables.


Thanks for your help,

Chris
 
My .vcproj references an environment variable that no longer exists:

Creating library...

Project : warning PRJ0018 : The following environment variables were
not found: $(WXWIN)

How do I suppress this warning? Note this is a "PRJ" warning not a
"C" (compiler) warning. FYI, my project must include these missing
environment variables.

There is no way to disable this build system warning apart from removing
the non-existing variables from the build options.

Thanks,
 
Back
Top