mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-08-09 20:24:14 +00:00
[client] add SVG loading support and use icons for status display
This brings nanosvg into the project for SVG loading and rendering. Unfortunatly we can not at this time use a submodule for this project until https://github.com/memononen/nanosvg/pull/214 is merged.
This commit is contained in:
23
resources/CMakeLists.txt
Normal file
23
resources/CMakeLists.txt
Normal file
@@ -0,0 +1,23 @@
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
project(lg_resources LANGUAGES C)
|
||||
|
||||
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake/")
|
||||
|
||||
include(MakeObject)
|
||||
|
||||
function(build_resources)
|
||||
make_object(
|
||||
LG_RESOURCES
|
||||
${ARGN}
|
||||
)
|
||||
set(LG_RESOURCES_OBJS "${LG_RESOURCES_OBJS}" PARENT_SCOPE)
|
||||
set(LG_RESOURCES_INCS "${LG_RESOURCES_INCS}" PARENT_SCOPE)
|
||||
endfunction()
|
||||
|
||||
build_resources(
|
||||
status/spice.svg
|
||||
status/recording.svg
|
||||
)
|
||||
|
||||
add_library(lg_resources STATIC ${LG_RESOURCES_OBJS})
|
||||
set_target_properties(lg_resources PROPERTIES LINKER_LANGUAGE C)
|
Reference in New Issue
Block a user