Create 'libs/ardour/search_paths.cc/.h' and transfer backend_search_path() to it
[ardour.git] / libs / ardour / search_paths.cc
1 /*
2     Copyright (C) 2011 Tim Mayberry 
3     Copyright (C) 2013 Paul Davis 
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <glibmm/miscutils.h>
22
23 #include "ardour/search_paths.h"
24 #include "ardour/directory_names.h"
25 #include "ardour/filesystem_paths.h"
26
27 namespace {
28         const char * const backend_env_variable_name = "ARDOUR_BACKEND_PATH";
29 } // anonymous
30
31 using namespace PBD;
32
33 namespace ARDOUR {
34
35 Searchpath
36 backend_search_path ()
37 {
38         Searchpath spath(user_config_directory ());
39         spath += ardour_dll_directory ();
40         spath.add_subdirectory_to_paths(backend_dir_name);
41
42         spath += Searchpath(Glib::getenv(backend_env_variable_name));
43         return spath;
44 }
45
46 } // namespace ARDOUR