Use RPATH in docker build

This commit is contained in:
Michael Hansen
2023-01-10 16:03:50 -06:00
parent 4c410fed2c
commit 1d858e8128
5 changed files with 42 additions and 11 deletions

View File

@@ -35,7 +35,8 @@ int main(int argc, char *argv[]) {
RunConfig runConfig;
parseArgs(argc, argv, runConfig);
larynx::initialize();
auto exePath = filesystem::path(argv[0]);
larynx::initialize(exePath.parent_path());
larynx::Voice voice;
auto startTime = chrono::steady_clock::now();