Backend .o files?
Unsolved
General and Desktop
-
I'm building a qml application with a c++ backend, using qtcreator 4.8.1. My project contains several .cpp files in the main directory, including main.cpp, backend.cpp and backend.h. When I build the project I see (among others) a main.o in the output directory, but I do not see backend.o. The application executes the code in backend.cpp, but where is the backend.o file? Thanks!
-
Hi,
To find all .o files in your build folder use
find output_folder -name "*.o"
. You might have "hidden" folders where these objects are stored.