wireshark/cmake/modules/FindNSIS.cmake

16 lines
406 B
CMake

#
# - Find NSIS
# Find the makensis command
#
# MAKENSIS_EXECUTABLE - path to the makensis utility.
# CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS - System runtime DLLs
# Find makensis
find_program(MAKENSIS_EXECUTABLE makensis
PATH "$ENV{PROGRAMFILES}/NSIS" "$ENV{PROGRAMW6432}/NSIS"
DOC "Path to the makensis utility."
)
set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP TRUE)
include(InstallRequiredSystemLibraries)