Files
revng-revng/lib/Support/ResourceFinder.cpp
2023-08-23 16:14:05 +02:00

21 lines
303 B
C++

//
// This file is distributed under the MIT License. See LICENSE.md for details.
//
#include "llvm/Support/Path.h"
#include "revng/Support/ResourceFinder.h"
namespace revng {
PathList ResourceFinder({
getCurrentRoot().str(),
#ifdef INSTALL_PATH
INSTALL_PATH,
#endif
});
} // namespace revng