Where in the Qt Creator settings are specified which C / C ++ libraries are used?
-
wrote on 9 Feb 2018, 07:54 last edited by AlekseyB 2 Sept 2018, 08:00
I'm working on Debian 9.2.3 and decided to deal with the library code that is used by my program. But, unfortunately, I didn't find the settings that allow to look / change the used libraries.
-
I'm working on Debian 9.2.3 and decided to deal with the library code that is used by my program. But, unfortunately, I didn't find the settings that allow to look / change the used libraries.
-
wrote on 9 Feb 2018, 08:08 last edited by AlekseyB 2 Sept 2018, 08:08
@koahnig said in Where in the Qt Creator settings are specified which C / C ++ libraries are used?:
Either those are libraries defined already by the complier or you can use LIBS for qmake in .pro file.
Perhaps, the compiler has already defined something. But I want to know what he has decided and how to change his decision.
-
@koahnig said in Where in the Qt Creator settings are specified which C / C ++ libraries are used?:
Either those are libraries defined already by the complier or you can use LIBS for qmake in .pro file.
Perhaps, the compiler has already defined something. But I want to know what he has decided and how to change his decision.
wrote on 9 Feb 2018, 08:12 last edited byYou need to check with your compiler documentation on settings to prevent use of standard libraries.
In .pro you can use QMAKE_FLAGS to tell through qmake this parameter. With LIBS you can specifiy different libraries.
-
You need to check with your compiler documentation on settings to prevent use of standard libraries.
In .pro you can use QMAKE_FLAGS to tell through qmake this parameter. With LIBS you can specifiy different libraries.
5/5