Better error message in Findngspice.cmake on msys.
This commit is contained in:
parent
47d7fea9be
commit
9c1c609fa3
|
@ -34,7 +34,12 @@ find_library( NGSPICE_LIBRARY ngspice
|
||||||
if( WIN32 AND MSYS )
|
if( WIN32 AND MSYS )
|
||||||
# NGSPICE_LIBRARY points to libngspice.dll.a on Windows,
|
# NGSPICE_LIBRARY points to libngspice.dll.a on Windows,
|
||||||
# but the goal is to find out the DLL name.
|
# but the goal is to find out the DLL name.
|
||||||
|
# Note: libngspice-0.dll or libngspice-1.dll must be in a executable path
|
||||||
find_library( NGSPICE_DLL NAMES libngspice-0.dll libngspice-1.dll )
|
find_library( NGSPICE_DLL NAMES libngspice-0.dll libngspice-1.dll )
|
||||||
|
|
||||||
|
if( NGSPICE_DLL STREQUAL "NGSPICE_DLL-NOTFOUND" )
|
||||||
|
message( ERROR ":\n***** libngspice-x.dll not found in any executable path *****\n\n" )
|
||||||
|
endif()
|
||||||
else()
|
else()
|
||||||
set( NGSPICE_DLL "${NGSPICE_LIBRARY}" )
|
set( NGSPICE_DLL "${NGSPICE_LIBRARY}" )
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue