Setting default compiler in CMake

两盒软妹~` 提交于 2020-01-22 04:48:49

问题


I'm using CMake version 2.8 on WinXP SP3. Whenever i run my CMakeLists script by default CMake use Visual Studio 10 compiler. I've tried to do:

SET( CMAKE_CXX_COMPILER "C:/MinGW/bin/g++" )

without success. How can i set MinGW as my default compiler so that i do not have to worry about setting compiler in the CMakeLists?


回答1:


With CMake version 3.15 or later, you can set the CMAKE_GENERATOR environment variable to specify the default generator to be used on your system.




回答2:


Under Windows CMake uses the newest Visual Studio installation as default generator, unless the generator is explicitly specified upon invoking CMake. This behavior is hard coded and cannot be changed.

As a work-around you can use a batch wrapper script titled cmake.bat with the following contents:

@cmake.exe -G "MinGW Makefiles" %*

The script should be placed in a directory on the system PATH and should take precedence over the CMake executable cmake.exe.

The script invokes cmake.exe with MinGW as a generator and forwards all other parameters to it.




回答3:


You only have to set the toolchain/output format once, typically you'd do this upon running cmake for the first time:

cmake -G "MinGW Makefiles" .

Instead of the dot you can use your own parameters (if any) and/or the path to the source.

As an alternative, especially when you're new to CMake, use the GUI version under windows (run cmake-gui without parameters instead of cmake).

Once opened, set your paths and click on "Configure". If there's no compiler set, it will ask you to pick one (otherwise you have to clear the cache to make it reappear).

Updated configuration values will appear in red and it will also allow you to select files and paths using the common Windows dialog boxes.

Once configuration is complete and without errors you can hit "generate" to create your makefiles or project files. To update these later on, you can use cmake-gui again or just use the usual command line version cmake.



来源:https://stackoverflow.com/questions/7081820/setting-default-compiler-in-cmake

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!