From 4e933b9a7c6a29ff86bf40e535cdb87cf59b0561 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sun, 22 Oct 2023 15:18:24 -0400 Subject: [PATCH] build: fix include paths --- CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d148b38e..f2a60a57 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -36,8 +36,9 @@ add_subdirectory(utest) # ---------------------------------------------------------------- # header-only library -set(SELF_LIB xo_ordinaltree) -xo_add_headeronly_library(${SELF_LIB}) +set(SELF_SHORTNAME ordinaltree) +set(SELF_LIB xo_${SELF_SHORTNAME}) +xo_add_headeronly_library5(${SELF_LIB} ${SELF_SHORTNAME}) # ---------------------------------------------------------------- #