Skip to content

Commit

Permalink
config: add android specific paths (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjodinchr authored Dec 7, 2024
1 parent a940e28 commit daad9ae
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ void parse_config_file() {

std::vector<std::string> config_file_paths;
config_file_paths.push_back("/etc/clvk.conf");
#ifdef __ANDROID__
config_file_paths.push_back("/system/etc/clvk.conf");
config_file_paths.push_back("/vendor/etc/clvk.conf");
#endif
config_file_paths.push_back("/usr/local/etc/clvk.conf");
config_file_paths.push_back("~/.config/clvk.conf");
config_file_paths.push_back(
Expand Down

0 comments on commit daad9ae

Please sign in to comment.