Skip to content

Commit

Permalink
possibly fix cmake for util applications to link against raptor_lib.
Browse files Browse the repository at this point in the history
  • Loading branch information
smehringer committed Aug 15, 2024
1 parent 5458a9c commit 2caa8cb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion util/applications/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ include ("${Raptor_SOURCE_DIR}/cmake/configuration.cmake")
add_subdirectory ("${Raptor_SOURCE_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/raptor")

add_library (utility_common INTERFACE)
target_link_libraries ("utility_common" INTERFACE raptor::interface)
target_link_libraries (utility_common INTERFACE "raptor_lib")
target_include_directories ("utility_common" INTERFACE "../include")

add_executable ("hibf_sizes" hibf_sizes.cpp)
target_link_libraries ("hibf_sizes" "utility_common")

add_executable ("create_sketch_file" create_sketch_file.cpp)
target_link_libraries ("create_sketch_file" "utility_common")

add_subdirectory (Genome_Biology)

add_subdirectory (iScience)

0 comments on commit 2caa8cb

Please sign in to comment.