ARToolKit 中丢失的文件
Missing Files in ARToolKit
我正在使用 ARToolKit 5.3.3 尝试从源代码构建。构建 simpleOSG 示例应用程序时出现以下错误:
error C1083: Cannot open include file: 'DSVL.h': No such file or
directory
error C1083: Cannot open include file: 'GL/glext.h': No such file or
directory
error C1083: Cannot open include file: 'GL/glut.h': No such file or
directory
error C1083: Cannot open include file: 'jpeglib.h': No such file or
directory
error C1083: Cannot open include file: 'osg/Config': No such file or
directory
error C1083: Cannot open include file: 'pthread.h': No such file or
directory
error C1083: Cannot open include file: 'qedit.h': No such file or
directory
来自 Github 的克隆位于 C:/。我不知道为什么这些文件会丢失,在我的 Mac 上从源代码构建时我对此没有任何问题。任何帮助将不胜感激。
ARToolKit 5.3.3,Windows10,Visual Studio2013
第三方依赖项未保存在 ARToolKit GitHub 存储库中。为了满足您列出的缺失依赖项,您将需要 DSVideoLib、GLUT、libjpeg、OpenSceneGraph、pthreads-win32 和 DirectShow SDK。
获取这些的最简单方法是直接从打包的二进制 ARToolKit SDK 之一中复制它们。
否则,您需要做一些工作来下载和构建每个依赖项。
我正在使用 ARToolKit 5.3.3 尝试从源代码构建。构建 simpleOSG 示例应用程序时出现以下错误:
error C1083: Cannot open include file: 'DSVL.h': No such file or
directory
error C1083: Cannot open include file: 'GL/glext.h': No such file or
directory
error C1083: Cannot open include file: 'GL/glut.h': No such file or
directory
error C1083: Cannot open include file: 'jpeglib.h': No such file or
directory
error C1083: Cannot open include file: 'osg/Config': No such file or
directory
error C1083: Cannot open include file: 'pthread.h': No such file or
directory
error C1083: Cannot open include file: 'qedit.h': No such file or
directory
来自 Github 的克隆位于 C:/。我不知道为什么这些文件会丢失,在我的 Mac 上从源代码构建时我对此没有任何问题。任何帮助将不胜感激。
ARToolKit 5.3.3,Windows10,Visual Studio2013
第三方依赖项未保存在 ARToolKit GitHub 存储库中。为了满足您列出的缺失依赖项,您将需要 DSVideoLib、GLUT、libjpeg、OpenSceneGraph、pthreads-win32 和 DirectShow SDK。
获取这些的最简单方法是直接从打包的二进制 ARToolKit SDK 之一中复制它们。
否则,您需要做一些工作来下载和构建每个依赖项。