boilerplat to begin working on verify module -- to be developed in paralle to the install module which will load an external symbol if this module is available for simpler bootstrapping

This commit is contained in:
Chris Punches
2025-03-27 00:14:47 -04:00
parent 15360edc42
commit 49c73d1876
6 changed files with 438 additions and 2 deletions

View File

@@ -35,8 +35,11 @@ add_subdirectory(modules/info ${CMAKE_BINARY_DIR}/build-modules/info)
# add the build module by including that
add_subdirectory(modules/build ${CMAKE_BINARY_DIR}/build-modules/build)
# add the verify module
add_subdirectory(modules/verify ${CMAKE_BINARY_DIR}/build-modules/verify)
# Create a custom target for building all modules
add_custom_target(modules DEPENDS info build)
add_custom_target(modules DEPENDS info build verify)
# Installation rules
install(TARGETS dpm DESTINATION bin)