I试图编译Blender 2.7我试图使用CMake生成Visual 12 ( 2013 )项目文件,但问题是我得到了一个错误
Could NOT find ZLIB (missing: ZLIB_LIBRARY ZLIB_INCLUDE_DIR)
Could NOT find PNG (missing: PNG_LIBRARY PNG_PNG_INCLUDE_DIR)
CMake Warning at CMakeLists.txt:1089 (message):
Using HARDCODED libpng locations
Could NOT find JPEG (missing: JPEG_LIBRARY JPEG_INCLUDE_DIR)
Found Freetype: C:/Users/Alfrek/Desktop/Blender 2.7/blender-2.71/../lib/win64_vc12/freetype/lib/freetype2ST.lib
Could NOT find OpenEXR (missing: _openexr_LIBRARIES OPENEXR_INCLUDE_DIR)
CMake Warning at CMakeLists.txt:1172 (message):
Using HARDCODED OpenEXR locations
Could NOT find TIFF (missing: TIFF_LIBRARY TIFF_INCLUDE_DIR)
CMake Warning at CMakeLists.txt:1191 (message):
Using HARDCODED libtiff locations
Could NOT find Boost
CMake Warning at CMakeLists.txt:1230 (message):
USING HARDCODED boost locations
Could NOT find OpenImageIO (missing: OPENIMAGEIO_LIBRARY OPENIMAGEIO_INCLUDE_DIR)
CMake Error at CMakeLists.txt:1928 (message):
Apple and Windows require pre-compiled libs at:
'C:/Users/Alfrek/Desktop/Blender 2.7/blender-2.71/../lib/win64_vc12'我不知道我该怎么办
我有一台Windows 7 64位计算机,正在使用2013
发布于 2014-08-21 09:02:59
您下载了源文件,但忘记了它的依赖关系。对于每个平台,搅拌器在其SVN回购中提供它的依赖项。
这就是你需要做的:
svn checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/win64_vc12
请记住,这是一个巨大的回购约6.5英镑。
完成后,在cmake中再次运行配置,它应该可以工作。
发布于 2019-09-29 20:26:04
听起来你在尝试运行make full之前遗漏了一步.
您将需要运行install_deps.sh脚本或打印构建Blender (-show-deps选项)所需的所有主要依赖项列表,并手动安装它们。
有关更新的开发环境要求-> Blender/Linux/Ubuntu,请参阅官方的搅拌器wiki。
自动依赖关系安装在Linux下安装依赖关系的首选方法是现在使用与Blender源代码一起提供的install_deps.sh脚本。它目前支持Debian (和派生的)、Fedora、Suse和Arch发行版。在使用install_deps.sh脚本时,只需要安装以下依赖项: git,构建必需的 然后,获取源代码并运行install_deps.sh cd ~/搅拌机-git ./blender/build_files/build_environment/install_deps.sh
https://stackoverflow.com/questions/24464064
复制相似问题