summaryrefslogtreecommitdiff
path: root/cmake/modules/FindPortableApps.cmake
blob: 17ee15ae2e3820c165c0728f741a289ac8f1650a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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)