Compare commits
3 Commits
v2.0.0-rc.
...
v2.0.1
| Author | SHA1 | Date | |
|---|---|---|---|
| ff83cb20f9 | |||
|
|
3801bc29f8 | ||
| bcd82900c7 |
@@ -5,6 +5,7 @@ project(rf_stbi LANGUAGES C VERSION 1.0)
|
||||
if (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin"))
|
||||
add_compile_options(-static-libgcc -static-libstdc++ -fno-exceptions)
|
||||
endif()
|
||||
add_compile_options(-O3)
|
||||
|
||||
add_library(stbi SHARED "rf_stbi.c")
|
||||
install(
|
||||
|
||||
@@ -1,19 +1,20 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
|
||||
<Nullable>enable</Nullable>
|
||||
<LangVersion>latest</LangVersion>
|
||||
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
||||
<RuntimeIdentifiers>linux-arm;linux-arm64;linux-x64;win-x86;win-x64;osx-arm64;osx-x64</RuntimeIdentifiers>
|
||||
<RootNamespace>ReFuel.Stb</RootNamespace>
|
||||
<Optimize>true</Optimize>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<!-- Nuget Properties. -->
|
||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||
<PackageId>ReFuel.StbImage</PackageId>
|
||||
<Version>2.0-rc.2</Version>
|
||||
<Version>2.0.1</Version>
|
||||
<Authors>STBI Authors, H. Utku Maden</Authors>
|
||||
<Description>
|
||||
A C# wrapper for the ubiquitous stb_image.h and stb_image_write.h library.
|
||||
@@ -25,7 +26,10 @@
|
||||
<RepositoryUrl>https://git.mixedup.dev/ReFuel/ReFuel.StbImage</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<PackageTags>stb; stb_image; stbi; image; load; save; read; write</PackageTags>
|
||||
<PackageReleaseNotes># 2.0.0
|
||||
<PackageReleaseNotes># 2.0.1
|
||||
* Enabled optimizations across the board for native and managed assemblies.
|
||||
|
||||
# 2.0.0
|
||||
* Exposed stbi_image_write.h
|
||||
* Moved native function calls to ReFuel.Stb.Native</PackageReleaseNotes>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
cd $(dirname "$0")
|
||||
./docker-cross-compiler/sh/build_native.sh .
|
||||
dotnet build
|
||||
dotnet build -c Release
|
||||
|
||||
Submodule docker-cross-compiler updated: 5901e3e317...d0f5760c7a
@@ -7,6 +7,7 @@
|
||||
#define STBI_NO_THREAD_LOCALS 1
|
||||
#include "stb/stb_image.h"
|
||||
|
||||
#define STBIWDEF RFEXTERN
|
||||
#define STBI_WRITE_NO_STDIO 1
|
||||
#include "stb/stb_image_write.h"
|
||||
|
||||
|
||||
2
stb
2
stb
Submodule stb updated: 013ac3bedd...f7f20f39fe
Reference in New Issue
Block a user