mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
* chore: fix clang-17 compiler * chore: adding missing file * fix: rive_native builds * chore: remove no runtime linking on linux * chore: more fixes * chore: removing rive_common * chore: use build_rive.sh for ios * chore: use rive_build.sh for recorder * chore: fix fill missing version * chore: add rive_build.sh to path * chore: add rive_build.sh to pr_ios_tests.yaml * chore: add rive_build to the recorder tests * chore: drop rive_flutter tests * chore: fixing ios tests * fix misspelled * chore: cleanup * chore: use latest zlib * chore: premake5.lua redirects to premake5_v2 * fix: tvos and ios builds * fix: unreal build path for miniaudio Co-authored-by: Luigi Rosso <luigi-rosso@users.noreply.github.com>
150 lines
4.1 KiB
Lua
150 lines
4.1 KiB
Lua
dofile('rive_build_config.lua')
|
|
|
|
dependencies = os.getenv('DEPENDENCIES')
|
|
|
|
rive = '../../'
|
|
rive_tess = '../../tess'
|
|
rive_skia = '../../skia'
|
|
skia = dependencies .. '/skia'
|
|
|
|
dofile(rive .. '/decoders/premake5_v2.lua')
|
|
if _OPTIONS.renderer == 'tess' then
|
|
dofile(path.join(path.getabsolute(rive_tess) .. '/build', 'premake5_tess.lua'))
|
|
else
|
|
-- tess renderer includes this
|
|
dofile(path.join(path.getabsolute(rive) .. '/build', 'premake5.lua'))
|
|
end
|
|
|
|
dofile(path.join(path.getabsolute(rive) .. '/cg_renderer', 'premake5.lua'))
|
|
|
|
project('rive_viewer')
|
|
do
|
|
dependson('rive_decoders')
|
|
kind('ConsoleApp')
|
|
|
|
defines({ 'WITH_RIVE_TEXT', 'WITH_RIVE_AUDIO', 'WITH_RIVE_LAYOUT', 'YOGA_EXPORT=' })
|
|
|
|
includedirs({
|
|
'../include',
|
|
rive .. '/include',
|
|
rive .. '/decoders/include',
|
|
rive .. '/skia/renderer/include', -- for font backends
|
|
dependencies,
|
|
dependencies .. '/sokol',
|
|
dependencies .. '/imgui',
|
|
miniaudio,
|
|
yoga,
|
|
})
|
|
|
|
links({ 'rive', 'rive_decoders', 'rive_harfbuzz', 'rive_sheenbidi', 'rive_yoga', 'miniaudio' })
|
|
|
|
libdirs({ rive .. '/build/%{cfg.system}/bin/%{cfg.buildcfg}' })
|
|
|
|
files({
|
|
'../src/**.cpp',
|
|
rive .. '/utils/**.cpp',
|
|
dependencies .. '/imgui/imgui.cpp',
|
|
dependencies .. '/imgui/imgui_widgets.cpp',
|
|
dependencies .. '/imgui/imgui_tables.cpp',
|
|
dependencies .. '/imgui/imgui_draw.cpp',
|
|
})
|
|
|
|
buildoptions({ '-Wall', '-fno-exceptions', '-fno-rtti' })
|
|
|
|
filter({ 'system:macosx' })
|
|
do
|
|
links({
|
|
'Cocoa.framework',
|
|
'IOKit.framework',
|
|
'CoreVideo.framework',
|
|
'OpenGL.framework',
|
|
'rive_cg_renderer',
|
|
})
|
|
files({ '../src/**.m', '../src/**.mm' })
|
|
end
|
|
|
|
filter({ 'system:macosx', 'options:graphics=gl' })
|
|
do
|
|
links({ 'OpenGL.framework' })
|
|
end
|
|
|
|
filter({ 'system:macosx', 'options:graphics=metal' })
|
|
do
|
|
links({ 'Metal.framework', 'MetalKit.framework', 'QuartzCore.framework' })
|
|
end
|
|
|
|
-- Tess Renderer Configuration
|
|
filter({ 'options:renderer=tess' })
|
|
do
|
|
includedirs({ rive_tess .. '/include', rive .. '/decoders/include' })
|
|
defines({ 'RIVE_RENDERER_TESS' })
|
|
links({ 'rive_tess_renderer', 'rive_decoders', 'libpng', 'zlib', 'libjpeg', 'libwebp' })
|
|
libdirs({ rive_tess .. '/build/%{cfg.system}/bin/%{cfg.buildcfg}' })
|
|
end
|
|
|
|
filter({ 'options:renderer=tess', 'options:graphics=gl' })
|
|
do
|
|
defines({ 'SOKOL_GLCORE33' })
|
|
end
|
|
|
|
filter({ 'options:renderer=tess', 'options:graphics=metal' })
|
|
do
|
|
defines({ 'SOKOL_METAL' })
|
|
end
|
|
|
|
filter({ 'options:renderer=tess', 'options:graphics=d3d' })
|
|
do
|
|
defines({ 'SOKOL_D3D11' })
|
|
end
|
|
|
|
filter({ 'options:renderer=skia', 'options:graphics=gl' })
|
|
do
|
|
defines({ 'SK_GL', 'SOKOL_GLCORE33' })
|
|
files({ '../src/skia/viewer_skia_gl.cpp' })
|
|
libdirs({ skia .. '/out/gl/%{cfg.buildcfg}' })
|
|
end
|
|
|
|
filter({ 'options:renderer=skia', 'options:graphics=metal' })
|
|
do
|
|
defines({ 'SK_METAL', 'SOKOL_METAL' })
|
|
libdirs({ skia .. '/out/metal/%{cfg.buildcfg}' })
|
|
end
|
|
|
|
filter({ 'options:renderer=skia', 'options:graphics=d3d' })
|
|
do
|
|
defines({ 'SK_DIRECT3D' })
|
|
libdirs({ skia .. '/out/d3d/%{cfg.buildcfg}' })
|
|
end
|
|
|
|
filter({ 'options:renderer=skia' })
|
|
do
|
|
includedirs({
|
|
skia,
|
|
skia .. '/include/core',
|
|
skia .. '/include/effects',
|
|
skia .. '/include/gpu',
|
|
skia .. '/include/config',
|
|
})
|
|
defines({ 'RIVE_RENDERER_SKIA' })
|
|
libdirs({
|
|
rive_skia .. '/renderer/build/%{cfg.system}/bin/%{cfg.buildcfg}',
|
|
})
|
|
links({ 'skia', 'rive_skia_renderer' })
|
|
end
|
|
|
|
-- CLI config options
|
|
newoption({
|
|
trigger = 'graphics',
|
|
value = 'gl',
|
|
description = 'The graphics api to use.',
|
|
allowed = { { 'gl' }, { 'metal' }, { 'd3d' } },
|
|
})
|
|
|
|
newoption({
|
|
trigger = 'renderer',
|
|
value = 'skia',
|
|
description = 'The renderer to use.',
|
|
allowed = { { 'skia' }, { 'tess' } },
|
|
})
|
|
end
|