How to Use CMake for Non-Interactive Build on Windows?

前端 未结 4 1135
离开以前
离开以前 2021-02-06 02:03

I want to set up automated build using CMake on Windows. I am using Visual Studio 2005.

Update: Here is what I am using:

I set devenv.exe to my

4条回答
  •  死守一世寂寞
    2021-02-06 02:42

    The simplest way I found to doing this was:
    % cmake --build "buildDir"
    you can also add --target and --config 'Debug|Release|...'

提交回复
热议问题