PROBLEM
-
hello guys, i have problem with my qmake, i want to make software from resources i found from internet, im basically not programmer but i want to make software from the intstruction, i have problem
WARNING: Failure to find:../src/main.cpp
WARNING: Failure to find:../src/io_util.cpp
WARNING: Failure to find:../src/MainWindow.cpp.
.im sorry for my english! -
Please provide more information.
How exactly are you building?
What build system is used (QMake or CMake)?
What Qt version?"from the intstruction" - can you show this instruction?
-
@jsulm 3D ScANNING SOFTWARE BUILD INSTRUCTIONS
The software requires Qt and OpencV libraries. It should run on any system
satisfying those requirements. The current version was tested with Qt 5.5.1
and OpenCV 2.4.11, but could run with other versions. The software was developed
and extensively used with Visual Studio 2010 on Windows 7 x64. It can be compiled
for 32 bits and 64 bits targets. I have tested the software briefly on OS X 10.7.5
where it compiles and runs. At this time it is completely untested for GNU/Linux
although experienced programmers should be able to build it there too.Prior to building, modify the paths on project/scan3d-capture.pro to match the location
and version of OpenCv in your system. The project file may be opened and build using
Qt Creator or built from command line.To build using make files from command line do this:
cd scan3d-capture
mkdir build
cd build
qmake ../project
make (or nmake to build with Microsoft Visual Studio)i have done edit the path from scan3d-project.pro use visual studio 2022
-
Hi,
Is that project publicly available ? If so, post a link to it.
Since you are new to this stuff, I would recommend using Qt Creator to open and build this project. -
@SGaist yes its public. http://mesh.brown.edu/calibration/
-
@Mateus2305 Have you tried using CMake? Just to see if the problem persists?
-
Ok so this is a Qt 4 project with an old configuration that does some paths configuration/manipulation that are outdated since a long time so you have to build it directly within. the
build
folder in the sources.How exactly are you proceeding to build it currently ?
If using Qt Creator, you can disable the shadow build option when configuring the project.Note that adding
QT += widgets
to the.pro
file will likely allow you to build it with Qt 5 rather than having to do spelunking for Qt 4.