From 2c87365225dc354f82765dd430ccbd3ab4ee3895 Mon Sep 17 00:00:00 2001 From: Michael Jackson Date: Wed, 18 Sep 2024 19:07:06 -0400 Subject: [PATCH] Default output directory for IPF Legends is in the build directory. Signed-off-by: Michael Jackson --- Source/Apps/generate_ipf_legends.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Apps/generate_ipf_legends.cpp b/Source/Apps/generate_ipf_legends.cpp index 0eb35d6..88be27d 100644 --- a/Source/Apps/generate_ipf_legends.cpp +++ b/Source/Apps/generate_ipf_legends.cpp @@ -33,8 +33,8 @@ using namespace EbsdLib; -const std::string k_Output_Dir(UnitTest::DataDir + "IPF_Legend/"); -// const std::string k_Output_Dir(UnitTest::TestTempDir + "IPF_Legend/"); +// const std::string k_Output_Dir(UnitTest::DataDir + "/IPF_Legend/"); +const std::string k_Output_Dir(UnitTest::TestTempDir + "/IPF_Legend/"); using EbsdDoubleArrayType = EbsdDataArray; using EbsdDoubleArrayPointerType = EbsdDoubleArrayType::Pointer;