cmake: Output aom_config in config sub dir.
Does away with somewhat confusing usage of "./aom_config.h" in
include statements while keeping linters silent.
aom_config.asm, aom_config.c, and aom_config.h are now written to
the config sub dir.
Change-Id: I99e2422d6ca8b20b9cdf2feee83a866c273e47b0
diff --git a/test/decode_test_driver.h b/test/decode_test_driver.h
index f473bc7..916efda 100644
--- a/test/decode_test_driver.h
+++ b/test/decode_test_driver.h
@@ -13,7 +13,9 @@
#define TEST_DECODE_TEST_DRIVER_H_
#include <cstring>
#include "third_party/googletest/src/googletest/include/gtest/gtest.h"
-#include "./aom_config.h"
+
+#include "config/aom_config.h"
+
#include "aom/aom_decoder.h"
namespace libaom_test {