From d123600a3a9b24d0394d7b362c71f3e91fad5510 Mon Sep 17 00:00:00 2001 From: Devin Nakamura Date: Mon, 15 Oct 2018 14:57:17 -0400 Subject: [PATCH] CMake: Add compiler/z/env folder Files in compiler/z/env should be compiled when jit is hosted on or targeting z architecrture Signed-off-by: Devin Nakamura --- runtime/compiler/z/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/compiler/z/CMakeLists.txt b/runtime/compiler/z/CMakeLists.txt index 868722f07e6..c2d9ab378fc 100644 --- a/runtime/compiler/z/CMakeLists.txt +++ b/runtime/compiler/z/CMakeLists.txt @@ -29,3 +29,5 @@ endif() if(TR_TARGET_ARCH STREQUAL "z") add_subdirectory(codegen) endif() + +add_subdirectory(env)