我正在C#for Linux上创建sfml项目。下载适用于C#和Linux的SFML之后,然后在文件/usr/mono/lib/config
中添加下一个字符串:
<dllmap dll "i:SFML.Window.dll"
target = "libsfml-window.so.2.5" os = "!windows"/>
<dllmap dll "i:SFML.Graphics.dll"
target = "libsfml-graphics.so.2.5" os = "!windows"/>
使用mcs Program.cs
和Mcs打印进行编译:
The type or namespace name `SFML' could not be found. Are you missing an assembly reference?
在配置文件mono中要写什么?查找Linux库的.so文件的完整路径以及sfml的.dll文件的完整路径?还是我错过了什么?