From 25d7064d907210e75ec84687722d4922d4688c93 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 22 Sep 2025 12:53:12 -0400 Subject: [PATCH] xo-indentlog: build: cosmetic --- example/ex1/CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example/ex1/CMakeLists.txt b/example/ex1/CMakeLists.txt index 69f49e1..3b48290 100644 --- a/example/ex1/CMakeLists.txt +++ b/example/ex1/CMakeLists.txt @@ -1,4 +1,7 @@ +set(SELF_EXE indentlog_ex1) +set(SELF_SRCS ex1.cpp) + if (XO_ENABLE_EXAMPLES) - add_executable(indentlog_ex1 ex1.cpp) + add_executable(${SELF_EXE} ${SELF_SRCS}) xo_include_options2(indentlog_ex1) endif()