mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
* Initial commit * Update macros * Add GPU Markers * Fix builds without microprofile * minor updates * clang format * Update profiler.cpp * clang format * Name Main Thread * Update profiler_macros.h * Fix end flip * Update fiddle_context_gl.cpp * clang format * Update rive_build_config.lua * Update rive_build_config.lua * forked microprofile so I can use a tag * Update render_context_d3d_impl.cpp * clang Co-authored-by: John White <aliasbinman@gmail.com>
12 lines
298 B
Lua
12 lines
298 B
Lua
local dependency = require('dependency')
|
|
microprofile = dependency.github(RIVE_MICROPROFILE_URL, RIVE_MICROPROFILE_VERSION)
|
|
project('microprofile')
|
|
do
|
|
kind('StaticLib')
|
|
language('C++')
|
|
cppdialect('C++11')
|
|
|
|
files { microprofile .. "/src/embed.c" }
|
|
includedirs(microprofile)
|
|
end
|