fix $ENV{WX_CONFIG} check in 46f52941
Apparently in cmake empty env vars do not evaluate to false, use explicit STREQUAL "".
This commit is contained in:
parent
46f5294129
commit
0489756d4c
|
@ -80,7 +80,7 @@ set(wxWidgets_USE_LIBS xrc xml html adv net core base)
|
|||
# wx-config utility for these packages to e.g. wx-config-gtk3
|
||||
#
|
||||
# Do not do the check if the WX_CONFIG env var is set.
|
||||
if(NOT $ENV{WX_CONFIG})
|
||||
if($ENV{WX_CONFIG} STREQUAL "")
|
||||
foreach(gtk_ver 4 3)
|
||||
set(wxWidgets_CONFIG_EXECUTABLE wx-config-gtk${gtk_ver})
|
||||
find_package(wxWidgets QUIET)
|
||||
|
|
Loading…
Reference in New Issue