Compare commits
11 Commits
3eeb41c1c9
...
v0.1.0-rc.
| Author | SHA1 | Date | |
|---|---|---|---|
| e9baf01af0 | |||
| e238a7aa57 | |||
| 827b9fc902 | |||
| ad8845c13b | |||
| a77f4c8be5 | |||
| db07a2daff | |||
| 166839eb8a | |||
| 5b55dbb64e | |||
| 1c5f73ceb8 | |||
| dfd585c939 | |||
| a0ddeefe76 |
5
.gitmodules
vendored
5
.gitmodules
vendored
@@ -1,3 +1,6 @@
|
||||
[submodule "freetype"]
|
||||
path = freetype
|
||||
url = https://git.mixedup.dev/QUIK/freetype.git
|
||||
url = https://git.mixedup.dev/ReFuel/freetype.git
|
||||
[submodule "docker-cross-compiler"]
|
||||
path = docker-cross-compiler
|
||||
url = https://git.mixedup.dev/ReFuel/docker-cross-compiler
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<!-- Nuget Properties. -->
|
||||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
|
||||
<PackageId>ReFuel.FreeType</PackageId>
|
||||
<Version>0.1.0-rc.1</Version>
|
||||
<Version>0.1.0-rc.3</Version>
|
||||
<Authors>FreeType Authors, H. Utku Maden</Authors>
|
||||
<Description>
|
||||
A C# wrapper for the FreeType font loading library.
|
||||
|
||||
@@ -112,8 +112,8 @@ namespace ReFuel.FreeType
|
||||
public uint GlyphIndex;
|
||||
public FTGeneric Generic;
|
||||
public FTGlyphMetrics Metrics;
|
||||
public long LinearHorizontalAdvance;
|
||||
public long LinearVerticalAdvance;
|
||||
public int LinearHorizontalAdvance;
|
||||
public int LinearVerticalAdvance;
|
||||
public FTVector Advance;
|
||||
public int Format;
|
||||
public FTBitmap Bitmap;
|
||||
|
||||
@@ -1,11 +1,16 @@
|
||||
#!/bin/bash
|
||||
cd $(dirname "$0")
|
||||
|
||||
export CMAKE_DIR="$PWD/Quik.Common/cmake"
|
||||
export CMAKE_DIR="$PWD/docker-cross-compiler/cmake"
|
||||
export NOINSTALL=1
|
||||
export QUIK_ADDITIONAL_CMAKE="-D BUILD_SHARED_LIBS=true -D NO_SONAME=true"
|
||||
export REFUEL_ADDITIONAL_CMAKE="-D BUILD_SHARED_LIBS=true -D NO_SONAME=true"
|
||||
|
||||
./Quik.Common/sh/quik_build_native.sh "$PWD/freetype"
|
||||
# Clang Builds
|
||||
./docker-cross-compiler/sh/build_native.sh "$PWD/freetype" "osx-arm64 osx-x64"
|
||||
|
||||
# GCC Builds
|
||||
export REFUEL_ADDITIONAL_CMAKE="$REFUEL_ADDITIONAL_CMAKE -D COMPILE_OPTIONS=\"-static-libgcc;-static-libstdc++;-fno-exceptions\""
|
||||
./docker-cross-compiler/sh/build_native.sh "$PWD/freetype" "linux-arm linux-arm64 linux-x64 win-x64 win-x86"
|
||||
|
||||
# Copy out natives from their respective directories into runtimes
|
||||
mkdir -p \
|
||||
|
||||
1
docker-cross-compiler
Submodule
1
docker-cross-compiler
Submodule
Submodule docker-cross-compiler added at 518969e2c9
2
freetype
2
freetype
Submodule freetype updated: 54f85c888d...57a643ae75
0
publish.sh
Normal file → Executable file
0
publish.sh
Normal file → Executable file
Reference in New Issue
Block a user