Make native library for linux in general

internals
Stephan Vedder 6 years ago
parent 81273e045a
commit 5da5cffeec
  1. 3
      README.md
  2. 0
      deps/cimgui/linux-x64/cimgui.so
  3. 4
      src/ImGui.NET/ImGui.NET.csproj

@ -13,9 +13,6 @@ ImGui.NET can be built in Visual Studio or on the command line. The .NET Core SD
# Usage
ImGui.NET currently provides a raw wrapper around the ImGui native API, and also provides a very thin safe, managed API for convenience. It is currently very much like using the native library, which is very simple, flexible, and robust. The easiest way to figure out how to use the library is to read the documentation of imgui itself, mostly in the imgui.cpp, and imgui.h files, as well as the exported functions in cimgui.h. Looking at the sample program code will also give some indication about basic usage.
# Known Issues
* The only bundled native Linux binary is for Ubuntu 16.04. Other Linux distros may require a different binary. This can be produced by cloning the cimgui repository (see below), and building it.
# See Also
https://github.com/ocornut/imgui
> ImGui is a bloat-free graphical user interface library for C++. It outputs vertex buffers that you can render in your 3D-pipeline enabled application. It is portable, renderer agnostic and self-contained (no external dependencies). It is based on an "immediate mode" graphical user interface paradigm which enables you to build user interfaces with ease.

@ -26,8 +26,8 @@
<PackagePath>runtimes/win-x64/native</PackagePath>
<Pack>true</Pack>
</Content>
<Content Include="..\..\deps\cimgui\ubuntu-x64\cimgui.so">
<PackagePath>runtimes/ubuntu-x64/native</PackagePath>
<Content Include="..\..\deps\cimgui\linux-x64\cimgui.so">
<PackagePath>runtimes/linux-x64/native</PackagePath>
<Pack>true</Pack>
</Content>
<Content Include="..\..\deps\cimgui\osx-x64\cimgui.dylib">

Loading…
Cancel
Save