summaryrefslogtreecommitdiff
path: root/src/plugins/webassembly/webassemblyemsdk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/webassembly/webassemblyemsdk.cpp')
-rw-r--r--src/plugins/webassembly/webassemblyemsdk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/webassembly/webassemblyemsdk.cpp b/src/plugins/webassembly/webassemblyemsdk.cpp
index 4acf6589c4..e66df1272d 100644
--- a/src/plugins/webassembly/webassemblyemsdk.cpp
+++ b/src/plugins/webassembly/webassemblyemsdk.cpp
@@ -29,7 +29,7 @@ static QString emSdkEnvOutput(const FilePath &sdkRoot)
if (!emSdkEnvCache()->contains(cacheKey)) {
const FilePath scriptFile = sdkRoot.pathAppended(QLatin1String("emsdk_env") +
(isWindows ? ".bat" : ".sh"));
- QtcProcess emSdkEnv;
+ Process emSdkEnv;
if (isWindows) {
emSdkEnv.setCommand(CommandLine(scriptFile));
} else {
@@ -88,7 +88,7 @@ QVersionNumber version(const FilePath &sdkRoot)
QLatin1String scriptFile{sdkRoot.osType() == OsType::OsTypeWindows ? "emcc.bat" : "emcc"};
FilePath script = sdkRoot.withNewPath(scriptFile).searchInDirectories(env.path());
const CommandLine command(script, {"-dumpversion"});
- QtcProcess emcc;
+ Process emcc;
emcc.setCommand(command);
emcc.setEnvironment(env);
emcc.runBlocking();