renamed c_tools to c_src and moved zobov to that directory

This commit is contained in:
Paul M. Sutter 2024-05-22 15:54:36 -04:00
parent 50ad2d6d73
commit 3203c24ec5
48 changed files with 3 additions and 4 deletions

View file

@ -0,0 +1,8 @@
include_directories(${CMAKE_CURRENT_BINARY_DIR})
SET(pruneVoids_SRCS pruneVoids.cpp)
add_genopt(pruneVoids_SRCS pruneVoids.ggo pruneVoids_conf STRUCTNAME pruneVoids_info)
add_executable(pruneVoids ${pruneVoids_SRCS})
target_link_libraries(pruneVoids ${ZOB_LIBS})
install(TARGETS pruneVoids DESTINATION ${VIDE_BIN})