diff options
author | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-05-23 14:14:56 (GMT) |
---|---|---|
committer | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-05-23 14:14:56 (GMT) |
commit | 4ecca617e628e94845dafafbdee46ce57f7bc843 (patch) | |
tree | 9113189a54068dd7916bcc377e0d1ff92fc1806b /apps | |
parent | 3709f5aa6bc3f458078b9e2b9ded67b75bbbcce4 (diff) | |
download | uscxml-4ecca617e628e94845dafafbdee46ce57f7bc843.zip uscxml-4ecca617e628e94845dafafbdee46ce57f7bc843.tar.gz uscxml-4ecca617e628e94845dafafbdee46ce57f7bc843.tar.bz2 |
Builds as plugins again
Diffstat (limited to 'apps')
-rw-r--r-- | apps/uscxml-browser.cpp | 2 | ||||
-rw-r--r-- | apps/uscxml-transform.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/uscxml-browser.cpp b/apps/uscxml-browser.cpp index 037f9a1..cd74154 100644 --- a/apps/uscxml-browser.cpp +++ b/apps/uscxml-browser.cpp @@ -130,7 +130,7 @@ int main(int argc, char** argv) { google::InitGoogleLogging(argv[0]); if (options.pluginPath.length() > 0) { - Factory::pluginPath = options.pluginPath; + Factory::setDefaultPluginPath(options.pluginPath); } // setup HTTP server diff --git a/apps/uscxml-transform.cpp b/apps/uscxml-transform.cpp index 09da679..13fc255 100644 --- a/apps/uscxml-transform.cpp +++ b/apps/uscxml-transform.cpp @@ -222,7 +222,7 @@ int main(int argc, char** argv) { // register plugins if (pluginPath.length() > 0) { - Factory::pluginPath = pluginPath; + Factory::setDefaultPluginPath(pluginPath); } // start HTTP server |