1 include_directories(${BERKELEY_DB_INCLUDE_DIRS})
2 # Create the executable tasks
3 file(GLOB_RECURSE source "*.cc")
4 add_executable(apt-ftparchive ${source})
6 # Link the executables against the libraries
7 target_include_directories(apt-ftparchive PRIVATE ${BERKELEY_DB_INCLUDE_DIRS})
8 target_link_libraries(apt-ftparchive apt-inst apt-pkg apt-private ${BERKELEY_DB_LIBRARIES})
10 # Install the executables
11 install(TARGETS apt-ftparchive RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})