Builds Windows nounity and unity
Builds Linux nounity and unity Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -8,3 +8,16 @@
|
||||
#pragma once
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#define __STDC_FORMAT_MACROS
|
||||
#include <inttypes.h>
|
||||
|
||||
// types like AZ::u64 require an usigned long long, but inttypes.h has it as unsigned long
|
||||
#undef PRIX64
|
||||
#undef PRIx64
|
||||
#undef PRId64
|
||||
#undef PRIu64
|
||||
#define PRIX64 "llX"
|
||||
#define PRIx64 "llx"
|
||||
#define PRId64 "lld"
|
||||
#define PRIu64 "llu"
|
||||
|
||||
+1
@@ -7,6 +7,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "time_UnixLike.h"
|
||||
#include <AzCore/std/chrono/clocks.h>
|
||||
|
||||
/**
|
||||
* This file is to be included from the semaphore.h only. It should NOT be included by the user.
|
||||
|
||||
Reference in New Issue
Block a user