解决方案一:(未解决,boost安装出错)
proj2cmake
https://github.com/mrpi/proj2cmake
另附cmake镜像站:https://cmake.org/files/
编译proj2cmake时报错:
Could NOT find Boost (missing: Boost_INCLUDE_DIR system filesystem
可参考
https://www.cnblogs.com/tang-zhou-zhou/p/16067695.html
编译boost
使用vs2017的x64_x86交叉工具命令提示符进入解压后的boost文件夹运行bootstrap.bat
b2 toolset=msvc-17.0 link=static runtime-link=shard threading=multivariant=debug
b2 install --prefix="D:\boost_1_81_0\boost\vc17"
toolset:编译器 msvc-17.0(vs2017)gcc(mingw)
prefix:安装位置
修改CMakeLists.txt
增加:set(BOOST_ROOT "D:/boost_1_81_0/boost/vc17")
防止找不到BOOST库
解决方案二:(已解决)
cmakeconverter
下载地址:https://github.com/pavelliavonau/cmakeconverter
前提条件,安装python环境和pip
python下载地址:https://www.python.org/downloads/windows/
pip下载地址:https://pypi.org/project/pip/#files
转换命令:cmake-converter -s 你的工程目录\xxx.sln
cmake -S "工程目录(包含sln的目录)" -B "指定sln生成目录" -G "编译器"
#cmake -S "D:\dicen" -B "D:\dicen\build" -G "Visual Studio 15 2017 Win64"
构建:cmake --build "D:\dicen\build"
执行第一条转换命令后会自动生成CMakeLists.txt文件,文件内有些路径和生成文件可自己修改,修改后再执行第二条命令。(注:如若修改了CMakeLists.txt,建议跳过第一条命令直接执行后两条,不然会覆盖已修改的cmake文件。)文章来源:https://www.toymoban.com/news/detail-708714.html
解决方案三:(未解决,perl模块安装编译报错)
vcxproj2cmake
https://github.com/ainvyu/vcxproj2cmake文章来源地址https://www.toymoban.com/news/detail-708714.html
到了这里,关于vs项目转cmake(.sln转CMakeLists.txt)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!