where is my LIBRARY ?
-
I have created a LIBRARY (project) in folder outside current Qt project.
Expecting it to "build" in same folder.Here is "build" output....
Using "add library " eternal to current project I have no data in "browse " for library file in expected folder - File manager confirms that.
I can browse for "include path " OKCould somebody with better eyesight kindly help me to find the libLIBRARY.so file location in the "build" output ?

19:54:46: The process "/usr/bin/make" exited normally. 19:54:46: Starting: "/usr/bin/make" -j4 g++ -c -pipe -g -std=gnu++11 -Wall -Wextra -D_REENTRANT -fPIC -DLIBRARY_LIBRARY -DQT_QML_DEBUG -DQT_CORE_LIB -I../LIBRARY -I. -I/home/qe/Qt/5.15.2/gcc_64/include -I/home/qe/Qt/5.15.2/gcc_64/include/QtCore -I. -I/home/qe/Qt/5.15.2/gcc_64/mkspecs/linux-g++ -o library.o ../LIBRARY/library.cpp rm -f libLIBRARY.so.1.0.0 libLIBRARY.so libLIBRARY.so.1 libLIBRARY.so.1.0 g++ -Wl,-rpath,/home/qe/Qt/5.15.2/gcc_64/lib -shared -Wl,-soname,libLIBRARY.so.1 -o libLIBRARY.so.1.0.0 library.o /home/qe/Qt/5.15.2/gcc_64/lib/libQt5Core.so -lpthread ln -s libLIBRARY.so.1.0.0 libLIBRARY.so ln -s libLIBRARY.so.1.0.0 libLIBRARY.so.1 ln -s libLIBRARY.so.1.0.0 libLIBRARY.so.1.0 19:54:47: The process "/usr/bin/make" exited normally. 19:54:47: Elapsed time: 00:02. -
@AnneRanch
I really do not know what happen, but my OS file manager did not "see" the .so file .
Allow me to blame it on my crappy OS.

-
I have created a LIBRARY (project) in folder outside current Qt project.
Expecting it to "build" in same folder.Here is "build" output....
Using "add library " eternal to current project I have no data in "browse " for library file in expected folder - File manager confirms that.
I can browse for "include path " OKCould somebody with better eyesight kindly help me to find the libLIBRARY.so file location in the "build" output ?

19:54:46: The process "/usr/bin/make" exited normally. 19:54:46: Starting: "/usr/bin/make" -j4 g++ -c -pipe -g -std=gnu++11 -Wall -Wextra -D_REENTRANT -fPIC -DLIBRARY_LIBRARY -DQT_QML_DEBUG -DQT_CORE_LIB -I../LIBRARY -I. -I/home/qe/Qt/5.15.2/gcc_64/include -I/home/qe/Qt/5.15.2/gcc_64/include/QtCore -I. -I/home/qe/Qt/5.15.2/gcc_64/mkspecs/linux-g++ -o library.o ../LIBRARY/library.cpp rm -f libLIBRARY.so.1.0.0 libLIBRARY.so libLIBRARY.so.1 libLIBRARY.so.1.0 g++ -Wl,-rpath,/home/qe/Qt/5.15.2/gcc_64/lib -shared -Wl,-soname,libLIBRARY.so.1 -o libLIBRARY.so.1.0.0 library.o /home/qe/Qt/5.15.2/gcc_64/lib/libQt5Core.so -lpthread ln -s libLIBRARY.so.1.0.0 libLIBRARY.so ln -s libLIBRARY.so.1.0.0 libLIBRARY.so.1 ln -s libLIBRARY.so.1.0.0 libLIBRARY.so.1.0 19:54:47: The process "/usr/bin/make" exited normally. 19:54:47: Elapsed time: 00:02.@AnneRanch said in where is my LIBRARY ?:
Expecting it to "build" in same folder.
In-source builds are usually a bad idea, they leave build artefacts around polluting the source folder.
Could somebody with better eyesight kindly help me to find the libLIBRARY.so file location in the "build" output ?
If you open your library project in Qt Creator, you can click on the project button in the left vertical bar and there you can find the "Build directory" field that will tell you where the final product goes:
-
@AnneRanch said in where is my LIBRARY ?:
Expecting it to "build" in same folder.
In-source builds are usually a bad idea, they leave build artefacts around polluting the source folder.
Could somebody with better eyesight kindly help me to find the libLIBRARY.so file location in the "build" output ?
If you open your library project in Qt Creator, you can click on the project button in the left vertical bar and there you can find the "Build directory" field that will tell you where the final product goes:
-
@AnneRanch
I really do not know what happen, but my OS file manager did not "see" the .so file .
Allow me to blame it on my crappy OS.

