mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-14 11:46:34 +02:00
🔧 Added artery-font-format
This commit is contained in:
parent
0d0aea2a72
commit
f752ea779f
3 changed files with 11 additions and 0 deletions
7
cmake/macros/TargetAFF.cmake
Normal file
7
cmake/macros/TargetAFF.cmake
Normal 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()
|
||||
|
||||
|
|
@ -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")
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue