CMake newbie here!CMake:UbuntuでCSharpを見つけることができませんでした
私はcmakeのコマンドでこだわっているしかし、私はhttps://github.com/Microsoft/malmo/blob/master/doc/build_linux.md
次の私のLinuxマシン(Ubuntuの16.04)上のマルメのプロジェクトをビルドしようとしている:私は取得していますcmake -DCMAKE_BUILD_TYPE=Debug ..
エラーができませんでしたですCSharpを見つける(欠落:CSHARP_TYPE CSHARP_VERSION CSHARP_COMPILER)。以下は完全なエラーメッセージです。
[email protected]:~/MalmoPlatform/build$ cmake -DCMAKE_BUILD_TYPE=Debug ..
-- Boost version: 1.58.0
-- Found the following Boost libraries:
-- chrono
-- date_time
-- filesystem
-- iostreams
-- program_options
-- python
-- regex
-- system
-- thread
-- atomic
CMake Error at /usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:148 (message):
Could NOT find CSharp (missing: CSHARP_TYPE CSHARP_VERSION CSHARP_COMPILER)
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/FindPackageHandleStandardArgs.cmake:388 (_FPHSA_FAILURE_MESSAGE)
cmake/FindCSharp.cmake:67 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:121 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/aerin/MalmoPlatform/build/CMakeFiles/CMakeOutput.log".
See also "/home/aerin/MalmoPlatform/build/CMakeFiles/CMakeError.log".
ここでCsharpを見つけるにはどうすればよいですか?
おそらく、Monoをインストールすることから始めることができます。 – Beefster
Monoをインストールしてくれてありがとう@Beefsterが問題を解決しました。 – Aaron