CMake comes with a cross-platform way to compile projects which is cmake --build .
. Is there a similar command to install a project? I'm looking for something that translates to make install
on Unix but also works on Windows.
答案 0 :(得分:5)
cmake --build . --target install