From ce708ed8ee6ca869f9965246b9625198650a7447 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Wed, 11 Mar 2026 10:03:46 -0500 Subject: [PATCH] build: retire FACET argument to genfacetimpl --- cmake/xo_macros/xo_cxx.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/xo_macros/xo_cxx.cmake b/cmake/xo_macros/xo_cxx.cmake index d6fb9369..52169a3d 100644 --- a/cmake/xo_macros/xo_cxx.cmake +++ b/cmake/xo_macros/xo_cxx.cmake @@ -1736,7 +1736,6 @@ function(xo_add_genfacetimpl) set(oneValueArgs TARGET # Name for this generation target FACET_PKG # package providing abstract interface - FACET # facet name INPUT # Input .json5 file ) set(multiValueArgs "") @@ -1746,9 +1745,6 @@ function(xo_add_genfacetimpl) if(NOT DEFINED GF_TARGET) message(FATAL_ERROR "xo_add_genfacetimpl: TARGET is required") endif() - if(NOT DEFINED GF_FACET) - message(FATAL_ERROR "xo_add_genfacetimpl: FACET is required") - endif() if(NOT DEFINED GF_INPUT) message(FATAL_ERROR "xo_add_genfacetimpl: INPUT is required") endif()