詳細については、「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>- 2つのうちの1つ

cmake .

または(一般的にお勧めします - トップレベルのディレクトリをきれいに保ちます)

mkdir build && cd build
cmake ..

おすすめ記事