libnick 2025.9.1
A cross-platform base for native Nickvision applications.
Loading...
Searching...
No Matches
dependencysearchoption.h
Go to the documentation of this file.
1
22
23#ifndef DEPENDENCYSEARCHOPTION_H
24#define DEPENDENCYSEARCHOPTION_H
25
26namespace Nickvision::System
27{
32 {
33 Global, // (Default) Searches first in the app's executable directory, then searches through the PATH variable
34 App, // Searches in the app's executable directory only
35 System, // Searches in the PATH variable only
36 Local // Searches in the UserDirectory::LocalData folder
37 };
38}
39
40#endif //DEPENDENCYSEARCHOPTION_H
Definition credentials.h:31
DependencySearchOption
Search options for search for dependencies on the system.
Definition dependencysearchoption.h:32
@ Global
Definition dependencysearchoption.h:33
@ Local
Definition dependencysearchoption.h:36
@ System
Definition dependencysearchoption.h:35
@ App
Definition dependencysearchoption.h:34