mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-27 12:51:42 +00:00
Add tomlplusplus.
This commit is contained in:
parent
8e8ce8b42f
commit
63377c3f17
3 changed files with 7 additions and 1 deletions
|
|
@ -63,6 +63,8 @@ find_package(VulkanHeaders CONFIG)
|
||||||
find_package(volk CONFIG REQUIRED)
|
find_package(volk CONFIG REQUIRED)
|
||||||
find_package(VulkanMemoryAllocator CONFIG REQUIRED)
|
find_package(VulkanMemoryAllocator CONFIG REQUIRED)
|
||||||
find_package(xxHash CONFIG REQUIRED)
|
find_package(xxHash CONFIG REQUIRED)
|
||||||
|
find_package(PkgConfig REQUIRED)
|
||||||
|
pkg_check_modules(tomlplusplus REQUIRED IMPORTED_TARGET tomlplusplus)
|
||||||
|
|
||||||
target_link_libraries(UnleashedRecomp PRIVATE
|
target_link_libraries(UnleashedRecomp PRIVATE
|
||||||
comctl32
|
comctl32
|
||||||
|
|
@ -81,6 +83,7 @@ target_link_libraries(UnleashedRecomp PRIVATE
|
||||||
unordered_dense::unordered_dense
|
unordered_dense::unordered_dense
|
||||||
winmm
|
winmm
|
||||||
xxHash::xxhash
|
xxHash::xxhash
|
||||||
|
PkgConfig::tomlplusplus
|
||||||
)
|
)
|
||||||
|
|
||||||
target_include_directories(UnleashedRecomp PRIVATE
|
target_include_directories(UnleashedRecomp PRIVATE
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
#include <ankerl/unordered_dense.h>
|
#include <ankerl/unordered_dense.h>
|
||||||
#include <ddspp.h>
|
#include <ddspp.h>
|
||||||
#include <ppc/ppc_recomp_shared.h>
|
#include <ppc/ppc_recomp_shared.h>
|
||||||
|
#include <toml++/toml.hpp>
|
||||||
|
|
||||||
#include "framework.h"
|
#include "framework.h"
|
||||||
#include "Mutex.h"
|
#include "Mutex.h"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,8 @@
|
||||||
"volk",
|
"volk",
|
||||||
"vulkan-headers",
|
"vulkan-headers",
|
||||||
"vulkan-memory-allocator",
|
"vulkan-memory-allocator",
|
||||||
"xxhash"
|
"xxhash",
|
||||||
|
"pkgconf",
|
||||||
|
"tomlplusplus"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue