From 63d2a2d0e24074e0908c55369d8bb52ababb6ce3 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Sun, 5 Jan 2025 16:07:21 +0100 Subject: [PATCH] Add main project's src dir to header search path --- tpl/premake.plugin.make | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tpl/premake.plugin.make b/tpl/premake.plugin.make index ec83504..d9ae1db 100644 --- a/tpl/premake.plugin.make +++ b/tpl/premake.plugin.make @@ -16,7 +16,8 @@ MINOR := 0 PATCH := 0 # Specify desired C++ standard for this project. -CXXFLAGS += -std=c++20 +# Include main project's src dir for header searching. +CXXFLAGS += -std=c++20 -I../../src # Change 'app' to product name for which this is a plugin. # Change 'plugins' to the desired directory name for installed plugins.