🔧 Added artery-font-format

This commit is contained in:
Edgar 2024-06-11 11:05:00 +02:00 committed by Julian Groß
parent 64cc3be090
commit 79e4f49bd5
3 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,7 @@
macro(TARGET_AFF)
find_package(artery-font-format)
target_link_libraries(${TARGET_NAME} artery-font-format::artery-font-format)
endmacro()

View file

@ -45,6 +45,7 @@ class Overte(ConanFile):
def requirements(self):
# self.requires("shaderc/2021.1") # Broken
# self.requires("crashpad/cci.20220219") # Broken
self.requires("artery-font-format/1.0.1")
self.requires("bullet3/3.25")
self.requires("cgltf/1.14@overte/stable")
self.requires("discord-rpc/3.4.0@anotherfoxguy/stable")

View file

@ -14,6 +14,9 @@ include_hifi_library_headers(octree)
include_hifi_library_headers(script-engine)
include_hifi_library_headers(hfm)
# Artery Font Format
target_aff()
# tell CMake to exclude qrc_fonts.cpp for policy CMP0071
set_property(SOURCE qrc_fonts.cpp PROPERTY SKIP_AUTOMOC ON)