Merge branch 'main' of github.com:Rconybea/xo-pyutil

This commit is contained in:
Roland Conybeare 2024-05-01 14:41:19 -04:00
commit 301a7c790d
2 changed files with 15 additions and 7 deletions

9
.gitignore vendored
View file

@ -1,3 +1,6 @@
# typical build directories
build
ccov
# clangd working space (see emacs+lsp)
.cache
# typical cmake build directory (source-tree-nephew)
.build*
# symlink to builddir/compile_commands.json; should be set manually in dev sandbox
compile_commands.json

View file

@ -32,10 +32,15 @@ add_definitions(${PROJECT_CXX_FLAGS})
# ----------------------------------------------------------------
set(SELF_LIB xo_pyutil)
add_library(${SELF_LIB} INTERFACE)
xo_include_headeronly_options2(${SELF_LIB})
xo_install_library2(${SELF_LIB})
xo_install_include_tree3(include/xo/pyutil)
xo_add_headeronly_library(${SELF_LIB})
#xo_include_headeronly_options2(${SELF_LIB})
# ----------------------------------------------------------------
# standard install + provide find_package() support
xo_install_library4(${SELF_LIB} ${PROJECT_NAME}Targets)
xo_export_cmake_config(${PROJECT_NAME} ${PROJECT_VERSION} ${PROJECT_NAME}Targets)
# ----------------------------------------------------------------