Add missing include path to visual C script

We need to include from both tests/include and framework/tests/include.
Update scripts/generate_visualc_files.pl to re-add tests/include, which
had previously been replaced with framework/tests/include.

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann 2024-11-08 12:23:28 +00:00
parent 26e1862742
commit 0f33bfa48a

View File

@ -50,6 +50,7 @@ my @include_directories = qw(
3rdparty/everest/include/everest
3rdparty/everest/include/everest/vs2013
3rdparty/everest/include/everest/kremlib
tests/include
framework/tests/include
);
my $include_directories = join(';', map {"../../$_"} @include_directories);