What's The Name of exe?
-
My cpmputer has a encrypt system.Every exe read local file will fail unless you put exe in whitelist of encrypt system.
For example,when you want to complier a c++ file ,you maybe use command
g++ HelloWorld.cpp -o HelloWorld
But the command will be fail because file "HelloWorld.cpp" had been encrypted so that g++ can't read it.I must connect system admin and tell he add the "g++.exe" in the white list of encrypt.
For Qt,there is a step that QtCreator will use"moc.exe" to complier some "xxx.h" file to produce "MOC_xxx.file".But it will be faile because "moc.exe" can't read"xxx.h",moc.exe only work normal after system admin add "moc.exe" in encrypt system.
Now i update my Qt version and my Qtcreator's version is 4.9.0,and QtCreator has a new function that can produce warning if i write a erro.
But becase of encrypt system,it looks can't work normal.
So i want to know what's the name of exe that achieve the function?
-
This looks like the code model output. You can switch off Code Model in Qt creator here
Personally I would check for all exe in Qt creator folder, compiler folder and all subfolders in there to be added into white list.
That would be certainly fastest to get rid of your issues. My guess is that all code model stuff is also somewhere inthe Qt creator folder (in my case c:\Qt\Tools\QtCreator ) -
@koahnig said in What's The Name of exe?:
This looks like the code model output. You can switch off Code Model in Qt creator here
Personally I would check for all exe in Qt creator folder, compiler folder and all subfolders in there to be added into white list.
That would be certainly fastest to get rid of your issues. My guess is that all code model stuff is also somewhere inthe Qt creator folder (in my case c:\Qt\Tools\QtCreator )I know this function is here.....but i need to know the name of exe that achieve the function and put the name of exe into the whitelist of encrypt system...