Add tomlplusplus.

This commit is contained in:
Skyth 2024-10-17 15:35:55 +03:00
parent 8e8ce8b42f
commit 63377c3f17
3 changed files with 7 additions and 1 deletions

View file

@ -63,6 +63,8 @@ find_package(VulkanHeaders CONFIG)
find_package(volk CONFIG REQUIRED)
find_package(VulkanMemoryAllocator CONFIG REQUIRED)
find_package(xxHash CONFIG REQUIRED)
find_package(PkgConfig REQUIRED)
pkg_check_modules(tomlplusplus REQUIRED IMPORTED_TARGET tomlplusplus)
target_link_libraries(UnleashedRecomp PRIVATE
comctl32
@ -81,6 +83,7 @@ target_link_libraries(UnleashedRecomp PRIVATE
unordered_dense::unordered_dense
winmm
xxHash::xxhash
PkgConfig::tomlplusplus
)
target_include_directories(UnleashedRecomp PRIVATE

View file

@ -11,6 +11,7 @@
#include <ankerl/unordered_dense.h>
#include <ddspp.h>
#include <ppc/ppc_recomp_shared.h>
#include <toml++/toml.hpp>
#include "framework.h"
#include "Mutex.h"

View file

@ -7,6 +7,8 @@
"volk",
"vulkan-headers",
"vulkan-memory-allocator",
"xxhash"
"xxhash",
"pkgconf",
"tomlplusplus"
]
}