From dd4f51049dc68ba6a8fc5154078d3f23aeb74297 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sun, 17 Dec 2023 18:56:36 +0900 Subject: [PATCH] [build] Fix up unwanted dependency on tracy source The tracy source files should not be required for make dist to work, so this works around it by using a little indirection. --- Makefile.am | 4 ++-- tools/tracy/qftracy.cc | 5 +++++ tools/tracy/qftracyvk.cc | 5 +++++ 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 tools/tracy/qftracy.cc create mode 100644 tools/tracy/qftracyvk.cc diff --git a/Makefile.am b/Makefile.am index 2a16c44d4..da4d1c551 100644 --- a/Makefile.am +++ b/Makefile.am @@ -62,8 +62,8 @@ PTHREAD_LDFLAGS=@PTHREAD_LDFLAGS@ PTHREAD_CFLAGS=@PTHREAD_CFLAGS@ if HAVE_TRACY -tracy_src=tracy/public/TracyClient.cpp -tracyvk_src=tracy/public/client/TracyVkProfiler.cpp +tracy_src=tools/tracy/qftracy.cc +tracyvk_src=tools/tracy/qftracyvk.cc else tracy_src= tracyvk_src= diff --git a/tools/tracy/qftracy.cc b/tools/tracy/qftracy.cc new file mode 100644 index 000000000..b70a5cc3b --- /dev/null +++ b/tools/tracy/qftracy.cc @@ -0,0 +1,5 @@ +// this works around a limitation with automake and source files that are +// not part of the distribution +#ifdef HAVE_TRACY +#include "tracy/public/TracyClient.cpp" +#endif diff --git a/tools/tracy/qftracyvk.cc b/tools/tracy/qftracyvk.cc new file mode 100644 index 000000000..c28c504eb --- /dev/null +++ b/tools/tracy/qftracyvk.cc @@ -0,0 +1,5 @@ +// this works around a limitation with automake and source files that are +// not part of the distribution +#ifdef HAVE_TRACY +#include "tracy/public/client/TracyVkProfiler.cpp" +#endif