c++ - Can't solve because it need *.dll -


i new deploy me first app in qt , c++.

when doubleclick in me exe of debug folder, have message.

error deploy qt app

but don't need .dll me app. add time ago trying deploy , find error.

i review me project.pro , comment lines type cgal.

i detect has problem when comment 1 of lines.

libs += -l$$pwd/../../../libs/cgal/bin libs += -l$$pwd/../../../libs/cgal4.9/auxiliary/gmp/lib 

could tell me, need review more , if need check part of configuration on tools of qt program.

thanks

probably doesn't find dll of qt libs's dependencies. either need deploy needed dll same executable output folder:

like such config in .pro config:

 qmake_post_link += windeployqt  $$destdir/$${target}.exe $$escape_expand(\n\t) 

either need configure windows path env variable add needed dll path in it.


Comments

Popular posts from this blog

'hasOwnProperty' in javascript -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

How to understand 2 main() functions after using uftrace to profile the C++ program? -