From e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 10 Apr 2024 22:34:10 +0200 Subject: Adding upstream version 4.2.2. Signed-off-by: Daniel Baumann --- cmake/modules/FindPortableApps.cmake | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 cmake/modules/FindPortableApps.cmake (limited to 'cmake/modules/FindPortableApps.cmake') diff --git a/cmake/modules/FindPortableApps.cmake b/cmake/modules/FindPortableApps.cmake new file mode 100644 index 00000000..17ee15ae --- /dev/null +++ b/cmake/modules/FindPortableApps.cmake @@ -0,0 +1,26 @@ +# +# - Find PortableApps +# Find the PortableApps LauncherGenerator and Installer commands +# +# PORTABLEAPPS_LAUNCHER_GENERATOR_EXECUTABLE - path to the PortableApps.comLauncherGenerator utility. +# PORTABLEAPPS_INSTALLER_EXECUTABLE - path to the PortableApps.comInstaller utility. + +# Find PortableApps.comLauncherGenerator +find_program(PORTABLEAPPS_LAUNCHER_GENERATOR_EXECUTABLE PortableApps.comLauncherGenerator + PATH + "C:/PortableApps/PortableApps.comLauncher" + "$ENV{USERPROFILE}/PortableApps/PortableApps.comLauncher" + DOC "Path to the PortableApps.comLauncherGenerator utility." +) + +# Find PortableApps.comInstaller +find_program(PORTABLEAPPS_INSTALLER_EXECUTABLE PortableApps.comInstaller + PATH + "C:/PortableApps/PortableApps.comInstaller" + "$ENV{USERPROFILE}/PortableApps/PortableApps.comInstaller" + DOC "Path to the PortableApps.comInstaller utility." +) + +# Assume that FindNSIS has taken care of this for us. +# set(CMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP TRUE) +# include(InstallRequiredSystemLibraries) -- cgit v1.2.3