자세한 내용을 보려면 "cmake --help"를 실행하세요.

자세한 내용을 보려면 "cmake --help"를 실행하세요.

다음 소프트웨어를 컴파일할 수 없습니다:

git clone https://github.com/bioinfologics/satsuma2.git
cd satsuma2
cmake
Usage

  cmake [options] <path-to-source>
  cmake [options] <path-to-existing-build>

Specify a source directory to (re-)generate a build system for it in the
current working directory.  Specify an existing build directory to
re-generate its build system.

Run 'cmake --help' for more information.

내가 놓친 게 무엇입니까?

답변1

당신은 놓치고 있습니다 <path-to-source>- 둘 중 하나

cmake .

또는 (일반적으로 권장됩니다 - 최상위 디렉토리를 깨끗하게 유지합니다)

mkdir build && cd build
cmake ..

관련 정보