File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ fixed :
2+ - Used the wrong PCL guard variable in CMakeLists.txt.
Original file line number Diff line number Diff line change 11include_directories (${MLIR_INCLUDE_DIRS} ${LLZK_INCLUDE_DIR} )
22
33set (_TBLGEN_PCL_FLAG "" )
4- if (LLZK_WITH_PCL )
4+ if (LLZK_WITH_PCL_BOOL )
55 set (_TBLGEN_PCL_FLAG "-DWITH_PCL" )
66endif ()
77
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ add_library(LLZK::LLZKTransforms ALIAS LLZKTransforms)
44file (GLOB LLZKTransforms_SOURCES "*.cpp" )
55
66# Remove the PCL lowering .cpp only when disabled.
7- if (NOT LLZK_WITH_PCL )
7+ if (NOT LLZK_WITH_PCL_BOOL )
88 list (REMOVE_ITEM LLZKTransforms_SOURCES "${CMAKE_CURRENT_SOURCE_DIR} /LLZKPCLLoweringPass.cpp" )
99endif ()
1010
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ set(LIT_ARGS "--xunit-xml-output report.xml")
2020# creating this guard and setting to 0-1
2121# because python doesn't like the ON/OFF stuff
2222set (LLZK_WITH_PCL_GUARD 0)
23- if (LLZK_WITH_PCL )
23+ if (LLZK_WITH_PCL_BOOL )
2424 set (LLZK_WITH_PCL_GUARD 1)
2525endif ()
2626
You can’t perform that action at this time.
0 commit comments