Skip to content

Commit b582670

Browse files
authored
[MLIR][BUG] fix {$VARIABLE} usage in CMakeLists.txt (#156183)
This pr fixed #156182
1 parent 5736595 commit b582670

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

mlir/lib/Dialect/AMDGPU/Transforms/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ add_mlir_dialect_library(MLIRAMDGPUTransforms
55
ResolveStridedMetadata.cpp
66

77
ADDITIONAL_HEADER_DIRS
8-
{$MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/AMDGPU/Transforms
8+
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/AMDGPU/Transforms
99

1010
DEPENDS
1111
MLIRAMDGPUTransformsIncGen

mlir/lib/Dialect/Arith/Transforms/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ add_mlir_dialect_library(MLIRArithTransforms
1212
UnsignedWhenEquivalent.cpp
1313

1414
ADDITIONAL_HEADER_DIRS
15-
{$MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Arith/Transforms
15+
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Arith/Transforms
1616

1717
DEPENDS
1818
MLIRArithTransformsIncGen

mlir/lib/Dialect/ControlFlow/Transforms/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ add_mlir_dialect_library(MLIRControlFlowTransforms
33
BufferizableOpInterfaceImpl.cpp
44

55
ADDITIONAL_HEADER_DIRS
6-
{$MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/ControlFlow/Transforms
6+
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/ControlFlow/Transforms
77

88
LINK_LIBS PUBLIC
99
MLIRBufferizationDialect

mlir/lib/Dialect/Quant/Transforms/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ add_mlir_dialect_library(MLIRQuantTransforms
44
StripFuncQuantTypes.cpp
55

66
ADDITIONAL_HEADER_DIRS
7-
{$MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Quant/Transforms
7+
${MLIR_MAIN_INCLUDE_DIR}/mlir/Dialect/Quant/Transforms
88

99
DEPENDS
1010
MLIRQuantTransformsIncGen

0 commit comments

Comments
 (0)