I'm using QT 5 with QGLWidget for opengl and need to import some 3ds models. Some people suggested me to use lib3ds, but i cant figure how to use it right.In my .pro
file i wrote this: INCLUDEPATH += "C:\Chrome downloads\lib3ds-1.3.0"
but when i'm including f.e. "lib3ds/file.h" and using method lib3ds_file_load() it says "error: undefined reference to `lib3ds_file_load'". Can you tell me how to include lib3ds to my qt project right?
How to include lib3ds to qt project?
644 Views Asked by Mark At
1
There are 1 best solutions below
Related Questions in QT
- C++ template using pointer and non pointer arguments in a QVector
- Using QPointer and QObject::connect with C++11
- qt How to style a QToolBar > QToolButton overflow button?
- Qt - Repeatedly write at beginning of file
- C++ Mongodb driver, not working
- deletion and cleanup of worker thread in Qt crashes
- How to drap item from QTableView to QPushButton?
- get image type from qimage
- C++ QT Getting part from QString
- How to connect a destroyed signal of C++ object from QML?
- How to get shader version from QOpenGLShader?
- Size of Qt QRadioButton able to get smaller, but not larger than default
- error WinSock.h has already been included Boost Windows Qt
- How to call a non-class member function with pointers as parameters with QtConcurrent::run?
- What is the difference between MinGW SEH and MinGW SJLJ?
Related Questions in IMPORT
- Django invalid literal for int() with base 10:
- Importing a downloaded JAR file into a Servlet
- Importing with package name breaking enum comparison in Python
- Being able to print before declaring. PYTHON
- R Importing excel file directly from web
- Connect to database and export to sql script
- Import Git SVN cloned repository into existing Git repository
- Python Searching for files and Importing them
- Python Importlib Not Finding Modules
- Python dynamic from?
- Android Importing Project -- FloatingActionButton cannot be found
- importing function giving scoping error
- How can I add an image in the drawable/res folder?
- importing external ".txt" file in python
- Import dataset with spanish special characters into R
Related Questions in 3DS
- Export DAE animation from 3ds max to Xcode with correct bounding box
- Symmetry 3ds Max
- How do I edit Border using editable poly in 3ds Max?
- 3ds object is not visible (beginner)
- Loading a 3d model in OpenGL
- Give each object in scene a unique wirecolor?
- animation from 3DS to OpenGL
- Creating .ase (ASCII EXPORT) file in blender or from .obj / .3ds file
- 3ds animation on android
- How can I properly render faces from a 3ds file
- MaxScript get local transforms of object at different frames and do math
- how to maxscript rename multiply object?
- THREE.js not rendering .obj with .mtl - exporting files for THREE.js
- How to include lib3ds to qt project?
- How to get a model from an .3ds to appear on a transperent background?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Depending on how you want to include library in your project you should either include implementation of your library as c/c++ sources using SOURCES += ..< implementation files> OR add compiled library source, providing LIBS += -L -l