Core: Add Uuid class

This commit is contained in:
Jérôme Leclercq
2022-03-04 20:40:41 +01:00
parent 36aea2ca0c
commit 72b664f42c
6 changed files with 306 additions and 2 deletions

View File

@@ -12,8 +12,10 @@ local modules = {
-- NazaraMath is header-only, make it part of the core project
add_headerfiles("include/(Nazara/Math/**.hpp)", "include/(Nazara/Math/**.inl)")
if is_plat("linux") then
add_syslinks("dl", "pthread")
if is_plat("windows") then
add_syslinks("ole32")
elseif is_plat("linux") then
add_syslinks("dl", "pthread", "uuid")
end
end,
Packages = {"entt"}